$(document).ready(function() {
	
	$('#ContactAddForm').ajaxForm({
		target: '#contactFormUpdate'}
	);
	
	$('#select-standard-view').click(function() {
		$('#view-selector .active').removeClass('active');
		$(this).addClass('active');
		$('#full-view').hide();
		$('#standard-view').fadeIn(200);
		
		return false;
	});
	
	$('#select-full-view').click(function() {
		$('#view-selector .active').removeClass('active');
		$(this).addClass('active');
		$('#standard-view').hide();
		$('#full-view').fadeIn(200);
		
		return false;
	});
	
	$('#categories-view').click(function() {
		var categoriesWrapper = $('#categories-wrapper');
		if (!categoriesWrapper.hasClass('visible')) categoriesWrapper.slideToggle();
		
		return false;
	});
	
	$('.contentPProduct a').click(function() {
		var module = $($(this).attr("href"));
		var wrapper = $('#textProduct');
		
		$('.contentPProduct a.active').removeClass('active');
		$(this).addClass('active');
		
		wrapper.children(':visible').hide();
		module.fadeIn('slow');
		
		return false;
	});
	
	$('.generic-dialog').click(function() {	
		var content = $('<div>');
		var title = $(this).attr('title');
		content.load($(this).attr('href'), function() {
			content.dialog({ 'resizable': false, 'position': 'center', 'title': title, 'width': 500, 'height': 450, 'open': function() { $('#contactForm').ajaxForm({ target: '#contactFormUpdate' }) } });
		});
		
		return false;
	});
	
	$('.fancybox-dialog').fancybox();
	
});
