$(document).ready(function() {

	// Show legal...
	$("#jqLegal, #jqLegalPrivacy").click(function(){
		
		window.open( $(this).attr("href"), null, 
			"height=400," + 
			"width=600," + 
			"status=no," + 
			"toolbar=no," + 
			"menubar=no," + 
			"location=no," + 
			"scrollbars=yes"
		);
		
		return false;
	});

	// Home page...
	$("#choose_language a").click(function(){
		var $this = $(this);
		if ( !$this.hasClass("selected") ){
			//Deselect all language and select the new one
			$("#choose_language a").removeClass("selected");
			$this.addClass("selected");
			
			var langID = $this.attr("href").replace("#","");
			
			$( '#home_box .choose_collection[id!="' + langID + '"]' ).fadeOut(200,function(){ 
			
				$("#"+langID).fadeIn(350);
				
			});
		}
		return false;
	});

	
	// About Us page...
	$("#aboutus_tabs > ul > li a:not(.selected)").live("click",function(){
		$("#aboutus_tabs > ul > li a.selected").removeClass("selected");
		$(this).addClass("selected");
		
		var txtID = $(this).attr("href").replace("#","#text_");
		$("#aboutus_tabs > .text:visible").fadeOut(0, function(){ $(txtID).fadeIn(0); });
	});
	
	// About Us page (scroll animation)...
	$('#aboutus_tabs > .text').jScrollPane();
	
	
	// Contact page...
	$("#info > a").click(function(){ $(this).fadeOut(0,function(){ $("#info > p").fadeIn(0); }); });
	$("#info > p").click(function(){ $(this).fadeOut(0,function(){ $("#info > a").fadeIn(0); }); });
	$("#submit a").click(function(){ submitForm(); return false; });
	
	
	//Disable right-click on image
	/* $("#collection_carousel").bind("contextmenu", function(e){ return false; }); */
	
	
});
