//fires when the document is finished loaded
$("document").ready(function() {


	//Hides the about txt from default view
	//$("#wrapper2").css("display", "none");
	
	
	//Brings up the products area if it has been hidden...
	$("#mp_1, #mp_2, #mp_3, #mp_4").click(function() {
		$("#wrapper2").slideUp("fast");
		$("#wrapper3").slideDown("fast");
		$("ul.horNavbar2 li a").removeClass("current");
	});

	//tabfunction - remember to call the jQuery Tools library
	$("ul#tabs").tabs(".panes", { 
		effect: 'default'		
	});
	
	//Shows the about txt when the About btn is clicked
	$("#mp_5").click(function() {
		$("#wrapper2").slideDown("fast");
		$("#wrapper3").slideUp("fast");	
		$("ul#tabs li a").removeClass("current");
		$("ul.horNavbar2 li a").addClass("current");
	});
	
	//Gallery

	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal', /* fast/slow/normal */
		padding: 40, /* padding for each side of the picture */
		opacity: 0.35, /* Value betwee 0 and 1 */
		showTitle: false, /* true/false */
		allowresize: true, /* true/false */
		counter_separator_label: 'av', /* The separator for the gallery counter 1 "of" 2 */
		theme: 'light_square', /* light_rounded / dark_rounded / light_square / dark_square */
		callback: function(){}
	});



	
//	$(".gallery div").hover(function(){
//		$(this).addClass('hover');
//		}, function(){
//		$(this).removeClass('hover');
//		});
	
	
});

