$(function(){
	var sliderId='';

$('div#centered div').hide();

$("#navigation li").each(function(){
	$(this).hover(function(){
		
		sliderId = $(this).attr('id');
				
		$('div#centered div').each(function(){
			if($(this).hasClass(sliderId)){
				$(this).show()
			.animate({
		      top:'194',
		      opacity:'1'
		      }, 'fast');	
			}
			else
			{
			$(this).animate({
		      top:'0',
		      opacity:'0'
		      }, 'fast').hide();
			}
		})
	  
	})
})


$('div#centered div').each(function(){
	if($(this).hasClass(sliderId)){
		$(this).hover(function(){},function(){
			$(this).animate({
		      top:'0',
		      opacity:'0'
		      }, 'fast').hide();
	    })
	}
	
})
	


$('#Logo').hover(function(){
	$('div#centered div').each(function(){
		if($(this).hasClass(sliderId)){
			$(this).animate({
		      top:'0',
		      opacity:'0'
		      }, 'fast').hide();		
		}
	})	
})

}); 


