/*

	[BACKBONE] by Fishhook
	01-DomReady.js (Version 0.1)
	
	Document to gather functions called on dom ready
	
*/

//*
$(document).ready(function(){
	$('#email, #message').focus(function(){
		if($(this).val() === 'Din e-post' || $(this).val() === 'Skriv din melding her'){
			$(this).val('');
		}
	});
});
// */
