$(document).ready(function(){
    $(".global-nav li").hover(
        function(){ 
        	$("ul", this).addClass('show-dropdown'); 
        	$("> a", this).addClass('sfHover');
        }, 
        function(){ 
        	$("ul", this).removeClass('show-dropdown'); 
        	$("> a", this).removeClass('sfHover');
        }
    );
    if (document.all) {
        $(".global-nav li").hoverClass("sfHover");
    }
    $('.login-btn input').hover (
		function() {
			$(this).attr({ style: "margin-top: -18px" });
			},
		function() {
			$(this).attr({ style: "margin-top: 0" });
			}
	);
	$('.search-btn input').hover (
		function() {
			$(this).attr({ style: "margin-top: -46px" });
			},
		function() {
			$(this).attr({ style: "margin-top: 0" });
			}
	);
    $(document).pngFix();  
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });  

 
};    
