jQuery(document).ready(function() {
	
	// Language Selector
	jQuery('.Selector a').toggle(function() {
		jQuery('#Languages').fadeIn('fast');
  	}, function() {
		jQuery('#Languages').fadeOut('fast');
	});
	
	
	// Optional message for form fields
    // --------------------------------
    jQuery(".OptionalInput").each(function() {
        jQuery(this).val(jQuery(this).attr("title"));
        jQuery(this).css({ color: "#cccccc" });
    });

    jQuery(".OptionalInput").focus(function() {
        if (jQuery(this).val() == jQuery(this).attr("title")) {
            jQuery(this).val("");
            jQuery(this).css({ color: "#666666" });
        }

    }).blur(function() {
        if (jQuery(this).val() == "") {
            jQuery(this).val(jQuery(this).attr("title"));
            jQuery(this).css({ color: "#cccccc" });
        }
    });
	
	
	// Booking Form
    // --------------------------------
    
    
});

