/****************************************************
 JACKMAN RECORDS common js 2009/12/11 
 ****************************************************/

$(document).ready(function () {
	$("#pop-layer").hide();
	$("#pop-layer").click(whatsjack_pop_toggle);
	$("#whats-jackmanrec").click(function(){
		var off=$(this).offset();
		var hi=$(this).height();
		$("#pop-layer").css("top",off.top+hi+8);
		whatsjack_pop_toggle();
		
		return false;
	});
});

function whatsjack_pop_toggle(){
	$("#pop-layer").toggle();
}

