﻿// JavaScript Document
$(document).ready(function(){
	
	$('#newsletter').validate();
	
	$('#newsletter_footer').validate();
	
	$(".defaultText").each(function() {
		if ($(this).val() == '') {
			var title = $(this).attr('title');
			$(this).val(title);
		}
	});
	
	$(".defaultText").focusin(function() {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
	
	$(".defaultText").focusout(function() {
		if($(this).val()=='') {
			$(this).val($(this).attr('title'));
		}
	});
});

var newsletter_sign_up = function(form) {
	if($('#'+form).valid()){ 
		$.fancybox.showActivity();

		var return_text = "<!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD XHTML 1.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-transitional.dtd\">\n<html xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<meta http-equiv=\"Content-Language\" content=\"en-us\" \/>\n<meta name=\"description\" content=\"\" \/>\n<link rel=\"shortcut icon\" type=\"image\/x-icon\" href=\"\/favicon.ico\">\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/includes\/combined_css.css\" \/>\n<\/head>\n<body>\n<div class=\"enquire_lb\" id=\"quick_contact_thanks\">      \n    <div class=\"hdr\">\n    \t<h3>Thank you<\/h3>\n    \t<a href=\"javascript:parent.$.fancybox.close();\" class=\"close_btn\">X<\/a>\n    <\/div>\n    <p>Thank you for signing up to our newsletter notifications.<\/p>\n<\/div><!--enquire_lb-->\n<\/body>\n<\/html>";
	
		$.ajax({
			url:'/includes/newsletter.asp',
			type:'post',
			data:{email:$("#"+form+" .emailAddress").val()},
			dataType:'json',
			success:function( message ){
			
			  $.fancybox( return_text, {
	          'scrolling': 'no',
	        	'titleShow': false,
	          'showCloseButton': false,
	          'padding': 0,
	          'margin': 0
	      });	  	
	      
			}
      
    });
	}
}

