// JavaScript Document
$(document).ready(function() {
///////////////////////////////////////////////////////////////////	
	
	
//$('#soundtrack .btn').click(function() {
//	$('#soundtrack .active').removeClass('active');
//	$(this).addClass('active');	
//});


// Setup Click Event Listener for Choose Clinic anchors
$(".options .option a.option").click(function(){
	$(".options .option a.active").addClass('inactive');
	$(".options .option a.active").removeClass('active');
	$(this).addClass("active");
	$(this).removeClass("inactive");	
});

// Click Event Listener for Microsite page My Massage Envy checkbox
//$(".my_me .checkbox").click(function(){
//	if($(this).hasClass("active"))
//	{
//		$(this).removeClass("active");
//	}
//	else
//	{
//		$(this).addClass("active");
//	}
//});

// Effects for interactive Map on the No Geo Ip locations page
if($("div#interactive_map").length > 0)
{
	$("ul#states li").each(
	function()
	{
		$(this).css({"opacity":0});
		$(this).mouseenter(
			function()
			{
				$(this).addClass("active");
				$(this).clearQueue().animate({opacity:1},250);
			}
		);
		$(this).mouseleave(
			function()
			{
				$(this).removeAttr("class");
				$(this).clearQueue().animate({opacity:0},350);
			}
		);
	});
}


// ABOUT ME URL PREFERENCE
//$('.about_me #side_nav li.display_nav:first-child a.display_nav.content_folder').attr('href', window.location.pathname);

///////////////////////////////////////////////////////////////////
});

//Update totals in cart on gift cards page
function updateCartTotal()
{
	alert("Code to update the cart will run here!");
}


