/* Maryland Republican Party Scripts
 * Designed by Matt Proud - Spring/Summer 2011 */

$(document).ready(function(){
	
	$('input.placeholder').focus(function() {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
	
	$('input.placeholder').blur(function() {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});
	
});
