// HTML5 - CSS3 - Modernizr stuff
$(function(){
	
	// Replicate HTML5 Placeholder support
	if(!Modernizr.input.placeholder){
		$('input, textarea').each(function(){
			if($(this).val() == '' && $(this).attr('placeholder') != ''){
				$(this).val($(this).attr('placeholder'));
				var type = $(this).attr('type');
				$(this).focus(function(){
					if($(this).val() == $(this).attr('placeholder')) $(this).val('');
				});
				$(this).blur(function(){
					if($(this).val() == '') $(this).val($(this).attr('placeholder'));
				});
			}
		});
	}

});
