// JavaScript Document
$(document).ready(function(){
	// Handle the menu items in the bottom content area.
	$("#fat-loss-articles").click(function(e) {
		SetBottomContent(e, "content/fat-loss-articles/index.php")
	});
	
    $("#bodyshaping-articles").click(function(e) {
		SetBottomContent(e, "content/bodyshaping-articles/index.php");
	});
	
    $("#diet-quiz").click(function(e) {
		SetBottomContent(e, "content/diet-quiz/index.php");
	});
	
    $("#newsletter").click(function(e) {
		SetBottomContent(e, "content/newsletter/index.php");
	});
	
    $("#faq").click(function(e) {
		SetBottomContent(e, "content/faq/index.php");
	});
	
    $("#about-authors").click(function(e) {
		SetBottomContent(e, "content/about-authors/index.php");
	});
	
    $("#order").click(function(e) {
		PausePlayer();
	});
	
    $("#customer-support").click(function(e) {
		PausePlayer();
	});
	
	/*$(".pause-link").click(function(){
		PausePlayer();
	});*/
	$("a").click(function(){
		if ($(this).hasClass("start-player")) {
			StartPlayer();
			
			var videoDiv = $("#video-menu");
			
			$('html, body').animate({
				scrollTop: $("#video-menu").offset().top
			}, 500);
		} else {
			PausePlayer();
		}
	});	
});

function SetBottomContent(e, url)
{
	e.preventDefault();
	PausePlayer();
	
	$.ajax({ url: url, 
	   	dataType: "html",
	   	processData: false,
	   	success: function(data){
		  	$("#site-content").html(data);
		  	$("#site-content").css("display", "block");
	   	},
	   	error:function(xhr,err,e){ 
	   		alert( "Error: " + err ); 
		}
	})
	
}