    // focus effect
    $(document).ready(function() {

					$(".mehuslidehover a").hover(function() {	//On hover...
				$(this).find("span").stop().animate({ 
					marginLeft: "25" //Find the span tag and move it up 40 pixels
				}, 750);
			} , function() { //On hover out...
				$(this).find("span").stop().animate({
					marginLeft: "0" //Move the span back to its original state (0px)
				}, 750);
			});
								$(".dropdown_shadow_bg a").hover(function() {	//On hover...
				$(this).find("span").stop().animate({ 
					marginLeft: "25" //Find the span tag and move it up 40 pixels
				}, 750);
			} , function() { //On hover out...
				$(this).find("span").stop().animate({
					marginLeft: "0" //Move the span back to its original state (0px)
				}, 750);
			});
	}); 
$(function(){

    $("#global_header ul#nav li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    
    });
    
    $("#global_header ul#nav li ul li:has(ul)").find("a:first").append(" &raquo; ");

});
$(function(){

			$('.tooltips').poshytip();
			
		});
