// Adwords Conversion Tracking code insertion.
function ppcconversion(cc) {
	var iframe = document.createElement('iframe');
	iframe.style.width = '0px';
	iframe.style.height = '0px';
	document.body.appendChild(iframe);
	iframe.src = cc;
};

$(document).ready(function(){
	$('#bottom label').inFieldLabels();
});

$(document).ready(function(){
	$('#bottom ul li').hover(function(){
		$(this).stop().animate({
			backgroundPosition: '5px 6px'
		});
	}, function(){
		$(this).stop().animate({
			backgroundPosition: '0px 6px'
		});
	});
});

$(document).ready(function() {
	$('.pop').fancybox();
});

$(document).ready(function(){
    var title = $('#content').find('h2').text();
    $("#submenu li a:contains('+ title +')").css({color: '#3D4859'});
});

$(document).ready(function(){
	$('#menu li').hover(function(){
		$(this).css({
			backgroundColor: '#F5E6DB'
		});
	}, function(){
		$(this).css({
			backgroundColor: 'transparent'
		});
	});
});

$(document).ready(function(){
	var contact;
	var contactFooter;
	$('#submit').submit(function(){
		contact = true;
		contactFooter = false;
	});
	$('#footer-submit').submit(function(){
		contact = false;
		contactFooter = true;
	});
});

function submissionSuccess(){
	if (contact === true){
		$('#contact').fadeOut(function(){
			$(this).prev('#success').slideDown();
		});
		ppcconversion('http://massachusettscosmetic.com/conversioncode.html');
	}
	if (contactFooter === true){
		$('#footer-contact').fadeOut(function(){
			$(this).prev('#success').slideDown();
		});
		ppcconversion('http://massachusettscosmetic.com/conversioncodefooter.html');
	}
}

$(document).ready(function(){
	$('#contact').validationEngine({
		scroll:false,
		ajaxSubmit: true,
		ajaxSubmitFile: "lib/become-patient.php",
		success : false,
		failure : function() {}
	});
	$('#footer-contact').validationEngine({
		scroll:false,
		ajaxSubmit: true,
		ajaxSubmitFile: "lib/footer-contact.php",
		success : false,
		failure : function() {}
	});
});

$(document).ready(function(){
	$('.home .hotspot').click(function(){
		location.href='http://massachusettscosmetic.com/specials.html';
	});
});


