jQuery(document).ready(function($) {

	$('.over').imghover({suffix: '-over'});
	
	$('input, textarea').focus(function (e) {
		if ($(this).val() == 'Your name' || $(this).val() == "E-mail" || $(this).val() == "message")
			$(this).val('');
	});
  
});
