// JavaScript Document

jQuery(document).ready(function() {
jQuery('#thebookinglink').click(function() {
jQuery("#bookinglink .widget").toggle("slow");	
});

jQuery('#menu-main-menu li').hover(function() {
jQuery(this).stop().animate({'height':'35px'},200);
jQuery(this).children('a').stop().animate({'color':'#CACACA'},200);
}, function() {
jQuery(this).stop().animate({'height':'29px'},200);
jQuery(this).children('a').stop().animate({'color':'#FFFFFF'},200);
});
});


