$(document).ready(function() {
	$('#promotion').cycle({ 
		fx:     'fade', 
		speed:  1000, 
		timeout: 0, 
		next:   '#next-tab', 
		prev:   '#prev-tab' 
	});
	// PLACEHOLDER FIX

	if(!Modernizr.input.placeholder){
		$("input").each(function(){
			if($(this).val()=="" && $(this).attr("placeholder")!=""){
				$(this).val($(this).attr("placeholder"));
				$(this).focus(function(){
					if($(this).val()==$(this).attr("placeholder")) $(this).val("");
					});
				$(this).blur(function(){
					if($(this).val()=="") $(this).val($(this).attr("placeholder"));
				});
			}
		});
	}

// END PLACEHOLDER FIX
});
