  $(document).ready(function(){


    
   $("#section-image").stop().fadeIn(350);



   $('#horizontal-multilevel-menu-upper .root-item')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0px -48px)", color:"#fff"}, 
			{duration:200})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)", color:"#555"}, 
			{duration:200})
		});



   $('#horizontal-multilevel-menu-lower .root-item')
	.css( {backgroundPosition: "0 -48"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0px 0px)", color:"#fff"}, 
			{duration:200})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -48)", color:"#555"}, 
			{duration:200})
		});




   $('.left-menu-item-animate a')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(-218 0)", color:"#fff"}, 
			{duration:250})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)", color:"#555"}, 
			{duration:250})
		});



$('.image_zoom a')
        .mouseover(function(){
		$(this).children('img').stop().animate(
			{ borderBottomColor:"#1679bf",
                       	borderLeftColor:"#1679bf",
                 	borderRightColor:"#1679bf",
                      	borderTopColor:"#1679bf"}, 
			{duration:350})
		})
	.mouseout(function(){
		$(this).children('img').stop().animate(
			{borderBottomColor:"#eee",
                       	borderLeftColor:"#eee",
                 	borderRightColor:"#eee",
                      	borderTopColor:"#eee"}, 
			{duration:350})
		});


  });
