  
  $(window).resize(function(){

	}); 
  
 $(document).ready(function(){
		cusel();
		hovers();
		$.updnWatermark.attachAll();
	});
 
 function cusel(){ 
		if($("#s_manufact").length){
			var params = {
				changedEl: "#s_manufact",
				visRows: 5,
				scrollArrows: false
			}	
			cuSel(params);
		}
		if($("#s_show").length){
			var params = {
				changedEl: "#s_show",
				visRows: 5,
				scrollArrows: false
			}	
			cuSel(params);
		}		
	 }
  
 function hovers(){
	 	$("a.more").hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});
		$("a.add").hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});
	 }
