$(document).ready(function() {


	$('#top-badge').supersleight();
	$('#right-badge').supersleight();

	$("a.elink").nospam({replaceText: true});
	
	$("#newletterform").validate();

	$("#contactform").validate();
	
  $("#competitionform").validate();


	$("#emailsignup").focus(function(){
		if ($(this).attr('value') == "enter your email here") {
			$(this).attr('value', '');
		}
	}).blur(function(){
		if ($(this).attr('value') == "") {
			$(this).attr('value', 'enter your email here');
		}
	});

});


