$(document).ready(function(){
  $("div.menu #OM").mouseover(function(){
    $("div #SER").animate({height:100},"slow");					   
	$("div.gifts").hide();
	$("div.garments").hide();
	$("div.events").hide();
	$("div.contactus").hide();
	$("div.home").show();
  });
});
$(document).ready(function(){
  $("div.menu #CG").click(function(){
	$("div #SER").animate({height:100},"slow");								  
	$("div.home").hide();
	$("div.garments").hide();
		$("div.contactus").hide();
    	$("div.gifts").show();
  });
});
$(document).ready(function(){
  $("div.menu #EVE").click(function(){
	$("div #SER").animate({height:100},"slow");								  
	$("div.home").hide();
	$("div.garments").hide();
    	$("div.gifts").hide();
			$("div.contactus").hide();
		$("div.events").show();
  });
});
$(document).ready(function(){
  $("div.menu #GAR").click(function(){
    $("div #SER").animate({height:100},"slow");					   									
	$("div.home").hide();
	$("div.gifts").hide();
	$("div.events").hide();
		$("div.contactus").hide();
	$("div.garments").show();

  });
});
$(document).ready(function(){
  $("div.menu #CON").mouseover(function(){
    $("div #SER").animate({height:100},"slow");					   									
	$("div.home").hide();
	$("div.gifts").hide();
	$("div.events").hide();
	$("div.garments").hide();
	$("div.contactus").show();

  });
});
$(document).ready(function(){
  $("div.menu #SER").mouseover(function(){
	$("div.home").hide();
	$("div.gifts").hide();
	$("div.garments").hide();
	$("div.events").hide();
		$("div.contactus").hide();
	$("div #SER").animate({height:300},"slow");
		

  });
});


