$(document).ready(		
		function(){ 
	        $(document).pngFix();
	        
	        $('.leftscroll').cycle({next: '#next',prev:'#prev',timeout:0,sync:false});
	        $('#galleria').galleria({max_scale_ratio:0.5, transition:'fade', carousel:true, carousel_speed: 300});
			
			 
            $('#contactForm').validate();			
}); 


window.onload=function() {  
			  if (document.getElementById) { 
			   	 document.getElementById("quant").onchange=function() { switchme(this); }  
			 } 
	} 
	function switchme(SNewSel) { 
		 var ind = SNewSel.selectedIndex; 
		 var txt = document.getElementById("totalprice"); 
		 switch (ind) { 
		  case 1: // free purchase 
		  txt.value = "Free"; 
		  break; 
		  case 2: // other purchase 
		  txt.value = "$19.48" ;
		  break; 
		 case 3: // other purchase 
		 txt.value = "$31.48" ;
		 break; 
		  case 4: // other purchase 
		 txt.value = "$36.98" ;
		 break; 
		  case 5: // other purchase 
		 txt.value = "$42.48" ;
		 break; 
		 default: 
		 txt.value=""; 
		 break; 
	  } 
 }