$(document).ready(function(){
   
   
//toggles the drop down studio menu
 $("#studiomenu").click(function () {
      $(".studio").slideToggle("fast");
    });
 
//toggles the drop down label menu
  $("#labelmenu").click(function () {
      $(".label").slideToggle("fast");
    });

//mouseover animation for label submenus
 $(".studio").mouseover(function () {
      $(this).animate({'left' : '10px'}, 200);
    }).mouseout(function() {
	$(this).animate({'left' : '20px'}, 200);
	});
 
//mouseover animation for label submenus
 $(".label").mouseover(function () {
      $(this).animate({'left' : '10px'}, 200);
    }).mouseout(function() {
	$(this).animate({'left' : '20px'}, 200);
	});
 

/*//mouseover for packages and deals
$(".highlight").mouseover(function()
{
    $(".enquire:hidden").show();
}).mouseout(function() {
	$(".enquire").hide();
	});
 */
 
 });
