$(document).ready(function() {
	$(".featured-offer").load("/offers/featured-offers.php .featured_special .specials_content h3, .featured_special .btn_reserve");	
	
	var directory = $('body').attr('id');
	$('#'+directory+' ul.nav .sub-'+directory).parent().attr('id', 'active');
	
	if($.browser.msie && $.browser.version == "7.0") {
		$(".nav li div").css("display", "none");
	}
	
	$('ul.nav li').hover(
		function() {			
			$(this).addClass('active');
		},
		
		function() {
			$(this).removeClass('active');
		}
	);
	
	$.fn.clearInputs = function() {
		return this.each(function() {		
			var default_value = $(this).val();

			$(this).focus(function() {			
				if ($(this).val() == default_value && $(this).attr('type') != 'submit') {
					$(this).val("");
				}
			});

			$(this).blur(function() {
				if ($(this).val() == "") {
					$(this).val(default_value);
				}
			});
		});
	};
	$('input').clearInputs();

});