$(document).ready( function() {
	var inputFieldPlaceholder = $( "#input-email" ).val();
	
	$( "#input-email" ).focus( function() {
		var that		     = $( this ),
			storedInputValue = that.val();
		
		if ( inputFieldPlaceholder === storedInputValue ) {
			that.val( "" );
		}
		
		that.blur( function() {
			if ( that.val() === "" ) {
				that.val( storedInputValue );
			}
		});
	});
	
	$( ".col.third a" ).hover( function() {
		$( this ).parent().toggleClass( "hover" );
	});
	
} )


