$(document).ready(function(){
	$('.header .menu a').attr('title', '');
	if($.os.name == 'mac'){
		$('.header .menu a.last').css('padding-right', '24px');
	};
	
	$('.header .menu li.parent').hover(function(){
		var parWidth = $(this).width();
		if ($(this).children('a').hasClass('ebookkeeping') == true){
			$(this).children('ul').css('width', '240px').slideDown(1000);
		}else if ($(this).children('a').hasClass('otheracct') == true){
			$(this).children('ul').css('width', '295px').slideDown(1000);
		}else if ($(this).children('a').hasClass('planning') == true){
			$(this).children('ul').css('width', '350px').slideDown(1000);
		}else if ($(this).children('a').hasClass('last') == true){
			$(this).children('ul').css({
				width: '145px',
				left: 'auto',
				right: '-1px'
			}).slideDown(1000);
		}else{
			$(this).children('ul').css('width', parWidth).slideDown(1000);
		}
		$(this).find('ul li.parent ul').css('left', parWidth);
	}, function(){
		$('.header .menu li.parent ul').stop(true, true);
		$(this).children('ul').slideUp(1000);
	});
	
	
	
})
