// JavaScript Document

$(document).ready(function(){
	$('.hm li').hover(
       function() {
		   $(this).find("ul:first").animate({opacity: "show", top: "43"}, "fast");
		},
       function() {
		   	$(this).find("ul:first").animate({opacity: "hide", top: "47"}, "fast");  	
       }
    );
	
	$('.header_blocks li ul li').hover(
       function() {
		   $(this).find("ul:first").animate({opacity: "show", top: "0", left: "330"}, "fast");
		},
       function() {
		   	$(this).find("ul:first").animate({opacity: "hide", top: "0", left: "335"}, "fast");
       }
    );	
	$('.header_blocks li').hover(
       function() {
		   $(this).find("ul:first").animate({opacity: "show", top: "225"}, "fast");
		},
       function() {
		   	$(this).find("ul:first").animate({opacity: "hide", top: "230"}, "fast");
       }
    );

});
