	$(document).ready(function(){
		$("a[rel^='prettyPhoto']").prettyPhoto();
		
		
	$("#subscribeForm").validate({
		rules: {
			Name: "required",
			Email: {
				required: true,
				email: true
			},
			Mobile: "required"
		},
		messages: {
			Name: "Please enter your name",
			Email: "Please enter your valid e-mail address",
			Mobile: "Please enter your mobile phone number"
		}
	});		
		
		
	  // Match all link elements with href attributes within the content div
	   $('a#oxleyhotel').qtip(
	   {
		  content: '<h3>Oxley Hotel</h3><p>Ipswich Road, Oxley QLD 4075<br />Phone: 07 3361 5100</p>', // Give it some content, in this case a simple string
	   	position: {
		  corner: {
		     target: 'topRight',
			 tooltip: 'bottomLeft'
		  }
		  
	   },
	    style: { 
		width: 400,
		tip: 'bottomLeft',
		padding:15,
		background: '#EEEEEE',
    	 border: {
         width: 5,
         radius: 2
      }
  	 }
	   
	   });
	   $('a#brightonhotel').qtip(
	   {
		  content: '<h3>Brighton Hotel</h3><p>196 Brighton Terrace, Brighton QLD 4017<br />Phone: 07 3269 1971</p>', // Give it some content, in this case a simple string
	   	position: {
		  corner: {
			 target: 'topRight',
			 tooltip: 'bottomLeft'
		  }
		  
	   },
	    style: { 
  		width: 400,
		 tip: 'bottomLeft',
		padding: 15,
		background: '#EEEEEE',
		
  	 border: {
         width: 5,
         radius: 2
      }
	 }
	   
	   });	
	   
	   $('.textClear').focus(function () {

	if ($(this).val() == $(this).attr("title")) {

		$(this).val("");

	}

}).blur(function () {

	if ($(this).val() == "") {

		$(this).val($(this).attr("title"));

	}

});	
	      
		
	});
