jQuery(document).ready(function(){

	//ini start
	jQuery('.menuContentIn').fadeOut(100);
	
	jQuery('.menuButton').hover(
		function(){
			var getId = jQuery(this).attr('id');
			//alert(getId);
			jQuery('#'+getId+' #karikatur').css('display','block');
			jQuery('.menuContent', this).animate({
				'height': 214
				},{
				'duration': 800,
				'queue': false
			});
			jQuery('.menuContentIn', this).fadeIn(800);
			
		},function(){
			jQuery('.menuContent', this).animate({
				'height': 0
				},{
				'duration': 1000,
				'queue': false
			});			
			jQuery('.menuContentIn', this).fadeOut(1200);
			jQuery('#karikatur').css('display','none');
		}
	);
	
});
