$(document).ready( function() {
   
   // open external link in new tab/window
   // use rel="external" instead of target="_blank"
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    
    //dropdown menu
		$("ul#nav li").hover(function(){
			$(this).addClass("hover");
		},function(){
			$(this).removeClass("hover");
		});

    //gallery - hide/show thumbnails
    $('.hide_me').hide();
    $('#kitchen').show();
    $('a.show_thumbs').click(function() {
      var show_me = $(this).attr('href');
      $(show_me).slideToggle("normal");
      $('.hide_me').hide();
      return false;
    });
    
    //gallery - show big image in banner area on rollover
 	  $('.gallery_thumbnails li a').hover(function(){
 		  $('#gallery_image').attr('src',$(this).attr('href'));
 		  return false;
 	  });
 	  
 	  //slideshow
    $('#slideshow').cycle({fx: 'fade', timeout: 5000, speed: 2000});

    //validate form
    $('#enquiryform').validate();
    
    //contact details popup
    $('.hideme').hide();
});