$(function(){
	// Hover effects on menu (Open/Close fake)
	$('#navigationcontainer ul li').hover(function(){
   	$(this).addClass("hover");
      $(this).css('height', '150px');
    	$('p', this).css('background-color','#666666');
   }, 
   function(){
      $(this).removeClass("hover");
      $(this).css('height', '24px');
      $('p', this).css('background-color','');
   });

	// Hover effects on subnavi items
	$('#navigationcontainer ul li p.subnavi').hover(function(){
   	$(this).addClass("hover");
      $(this).css('background-color', '#dedede');
		$('a',this).css('color', '#666666');
   }, 
   function(){
      $(this).removeClass("hover");
      $(this).css('background-color', '#666666');
      $('a',this).css('color', '#FFFFFF');
   });
});
