$(document).ready(function(){
	/*
	$("#PROMO_links").css("display", "none");
	$("#PROMO_links").fadeIn(2000);
    */
	$(".release_panel li, #latest_images li").hover(function() {
    $(this).addClass("hover");
    }, function() {
    	$(this).removeClass("hover");
    });
    
    $(".release_panel li, #latest_images li").click(function() {
    	window.location=$(this).find("a").attr("href");return false;
	});
	
	$("#myController").jFlow({
		controller: ".jFlowControl", // must be class, use . sign
		slideWrapper : "#jFlowSlider", // must be id, use # sign
		slides: "#mySlides",  // the div where all your sliding divs are nested in
		selectedWrapper: "jFlowSelected",  // just pure text, no sign
		width: "666px",  // this is the width for the content-slider
		height: "260px",  // this is the height for the content-slider
		duration: 400,  // time in miliseconds to transition one slide
		prev: ".jFlowPrev", // must be class, use . sign
		next: ".jFlowNext", // must be class, use . sign
		auto: true
    });						
});	


