jQuery(function(){
			jQuery('ul.sf-menu').superfish({
				speed:500,
				autoArrows:  false,
				animation: {height:'show',opacity:'show'},
				delay:500
			});
			$('.sf-menu').find('ul').corner('tr br bl');
			$('.sf-menu li li').each(function()
			{
				$(this).find('ul:first').css('margin-top','15px');
			});
			
			$('.sf-menu li li').each(function()
			{
				$(this).css('margin-top','0px');
				$(this).find('li:first').append('<img src="images/a.png"/>').find('img').css({
				'position':'relative',
				'top':'-31px',
				'left':'0px',
				'z-index':'100'
				});
				
				$(this).find('li:first a').css('margin-bottom','-16px');
			});
			
			$('.sf-menu > li').each(function()
			{
				$(this).find('a:first').css({
				'font-size':'9pt'
				});
				
				if ($(this).find('ul').size()>0)
				{
					$(this).corner();
				}else
				{
					$(this).corner();
				}
			});
		});
