// JavaScript Document
function closeDiscounts(){
	$('.discounts').fadeOut('slow', function(){ $('a.showDiscounts').show(); });
	
}
function showDiscounts(){
	$('a.showDiscounts').hide();
	$('.discounts').fadeIn('slow');
}

	

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function clearSearchForm(){
	if( $(this).val() == 'Enter Keywords' ){
		$(this).val('');
	}
}

function blurSearchForm(){
	if( $(this).val() == '' ){
		$(this).val('Enter Keywords');
	}	
}


$(function() {
	$("#footer").jCarouselLite({
		btnNext: "#footer .next",
		btnPrev: "#footer .prev",
		visible: 4
	});
	$('#footer').load('/footerHTML.html');
	$('a.closeDiv').bind('click', closeDiscounts);
	$('a.showDiscounts').bind('click', showDiscounts);
	
	$('input#searchKeywords').bind('focus', clearSearchForm);
	$('input#searchKeywords').bind('blur', blurSearchForm);
	$('a.comingSoonLink').fadeTo(1, .5);

});//edn document.ready functions