$(document).ready(function(){
var linkname = "/wp/wp-content/themes/sgrr/js/embed.php";
	$(".content-header a#a").click( function (){
		$("#video-player").animate({opacity: "0.10"}, 500);
		$("#video-player ul li").load(''+linkname+' span#c1', function(){
			$("#video-player").animate({opacity: "1.0"}, 600);
		});	
		$(".home .content-header").css("height", "100%");
		return false;
	});
	$(".content-header a#b").click( function (){
		$("#video-player").animate({opacity: "0.10"}, 500);
		$("#video-player ul li").load(''+linkname+' span#c2', function(){
			$("#video-player").animate({opacity: "1.0"}, 600);
		});	
		$(".home .content-header").css("height", "100%");		
		return false;
	});
	$(".content-header a#c").click( function (){
		$("#video-player").animate({opacity: "0.10"}, 500);
		$("#video-player ul li").load(''+linkname+' span#c3', function(){
			$("#video-player").animate({opacity: "1.0"}, 600);
		});	
		$(".home .content-header").css("height", "100%");
		return false;
	});
	$(".content-header a#d").click( function (){
		$("#video-player").animate({opacity: "0.10"}, 500);
		$("#video-player ul li").load(''+linkname+' span#c4', function(){
			$("#video-player").animate({opacity: "1.0"}, 600);
		});	
		$(".home .content-header").css("height", "100%");		
		return false;
	});
	$("#content-wrapper div.content-header").hover( function (){
		$("#video-player ul li p").css("height", "auto");
	},
	function () {
		$("#video-player ul li p").animate({height: "1.15em"}, 500);
	});
});