jQuery(document).ready(
					   
	function(){
	//jQuery("div.menu ul li.ch").click(
	//	function(){
		//$(this).find("ul").toggle();
		//$(this).toggleClass("ch1");
	//	return false;
	//	}
	//);
	
	jQuery("div.menu ul li.ch_big").click(
		function(){
		$(this).find("ul").toggle();
		$(this).toggleClass("ch_big1");
		return false;
		});
	
	jQuery("div.menu ul li ul li a").click(
		function(){
		document.location=$(this).attr("href");
		});		
	
	if (document.location=="http://kran-service.insite/") 
	{ch1="1.jpg"; ch2="2.jpg"; ch3="3.jpg"; ch4="4.jpg"; ch5="5.jpg";}
	else
	{ch1="1_f.jpg"; ch2="2_f.jpg"; ch3="3_f.jpg"; ch4="4_f.jpg"; ch5="5_f.jpg";}
	
	jQuery("#but_1").hover(function() {		
			$(this).attr("src","/img/1_ch.jpg");
		}, function(){
			$(this).attr("src","/img/"+ch1);
	});
	
	jQuery("#but_2").hover(function() {
			$(this).attr("src","/img/2_ch.jpg");
		}, function(){
			$(this).attr("src","/img/"+ch2);
	});
	
	jQuery("#but_3").hover(function() {
			$(this).attr("src","/img/3_ch.jpg");
		}, function(){
			$(this).attr("src","/img/"+ch3);
	});
	
	jQuery("#but_4").hover(function() {
			$(this).attr("src","/img/4_ch.jpg");
		}, function(){
			$(this).attr("src","/img/"+ch4);
	});
	
	jQuery("#but_5").hover(function() {
			$(this).attr("src","/img/5_ch.jpg");
		}, function(){
			$(this).attr("src","/img/"+ch5);
	});

});
