$(document).ready(function(){
	$('#menu li').hover(function(event){
		event.stopPropagation();
		$(this).addClass('hover');
		$(this).find('ul:first').stop(true,true).slideDown("slow");					 
	},
	function(){
		$(this).removeClass('hover');
		$(this).find('ul:first').slideUp("slow");
	})
	$('.part li').hover(function(event){
		event.stopPropagation();
		$(this).addClass('hover');
		$(this).find('ul:first').stop(true,true).slideDown("slow");					 
	},
	function(){
		$(this).removeClass('hover');
		$(this).find('ul:first').slideUp("slow");
	})
	$('.left').children().each(function(i){						   
		if($(this).attr('class')=='title' && i==0)
		{
			$(this).css('marginTop',0);
		}
	})
	$('.pictitlelist').append('<div class="clear"></div>');
})
