$(function(){
		   
	$("#map-canvas").googleMap({
		zoomLevel: 12,
		center: '9 Hollyhock Road, Wilton, CT 06897',
		tooltip: '<strong>The Right Touch</strong><br /><em>Massage Therapies, LLC</em><br />9 Hollyhock Road<br />Wilton, CT 06897',
		start: '#start',
		end:'#end',
		submit: '#getdirections',
		directions: 'directions'
	}).load();
  
//	reposition_footer();

	$('.sf-navbar').find('li.current').each(function(){
		$(this).css('background-color','#004479');
		if($(this).find('li').size()>0){
			$('.sf-navbar').css('padding-bottom','2.5em');
			$(this).find('li').each(function(){
				$(this).css('background-color','#004479');
			});
		}
	});
	$('.sf-navbar').find('li').each(function(){
		if($(this).find('li').size()>0){
			$(this).closest('li').mouseover(function(){
			   $(this).find('li').each(function(){
					$(this).css('background-color','#004479');
				});
			});
		}
	});
	
	$("ul.sf-menu").superfish({ 
		pathClass:  'current' 
	}); 
	
	$('#contact-form').validate({
		rules:{
			'email-address':{
				email: true
			}
		},
		messages:{
			'email-address':{
				email: '<span style="color:#C00;">Invalid Email Address.</span>',
				required: '<span style="color:#C00;">This field is required.</span>'
			},
			'first-name':{
				required: '<span style="color:#C00;">This field is required.</span>'
			},
			'last-name':{
				required: '<span style="color:#C00;">This field is required.</span>'
			}
		},
		submitHandler: function(){
			var formvals = $('#contact-form').serialize();
			$('#contact-form').parent().removeClass('error').removeClass('success');
			$('#contact-form ul').find('.error-msg').remove();
			$('#contact-form ul').find('.success-msg').remove();
			$('#contact-form ul').prepend('<li><div style="float:left;"><img src="img/loading.gif" /></div><div style="float:left; padding-left:10px;">Loading...</div></li>');
			$.post('/fun.contact.php', formvals, function(response){
				$('#contact-form ul li:first').remove();
				if(response=='success'){ // Success
					$('#contact-form').parent().addClass('success');
					$('#contact-form ul').prepend('<li class="success-msg"><div><strong>Success!</strong><br />Thank you for contacting us. We will be contacting you shortly.</div></li>');
					$('#contact-form li:not(:first)').remove();
//					reposition_footer();
				}else{ // Error
					$('#contact-form').parent().addClass('error');
					$('#contact-form ul').prepend('<li class="error-msg"><div><strong>Error!</strong><br />An error has occurred, please try again or contact <a href="mailto:webmaster@therighttouchmassage.net">webmaster@therighttouchmassage.net</a>.</div></li>');
//					reposition_footer();
				}
			});
		}
	});

});

function reposition_footer(){
	if($(document).height()>$(window).height()){
		$('#page-bottom-bg').css('top', ($(document).height()-218)+'px');
	}else{
		var padding = $(window).height()-$('#page-footer').offset().top;
		padding = padding - $('#page-footer').height();
		$('#page-footer').css('margin-top',padding+'px');
	}
}
