
/*
$(function() {
    $("#thumbs").jCarouselLite({
        btnNext: "#nextId",
        btnPrev: "#prevId",
		circular: true,
		visible: 3,
	    start: 0,
	    scroll:3		
    });
});
*/


$(document).ready(function(){

	$('#dvds').hover(function(){
		$('#svod').fadeIn();
	},
	function(){
		$('#svod').fadeOut();
	});

	
	$('#stream-s1').hover(function(){
		$('#stream').fadeIn();
	},
	function(){
		$('#stream').fadeOut();
	});
	
	$('#stream-s2').hover(function(){
		$('#stream2').fadeIn();
	},
	function(){
		$('#stream2').fadeOut();
	});

	
	$('#guideBook').hover(function(){
		$('#guide').fadeIn();
	},
	function(){
		$('#guide').fadeOut();
	});
	
	
	
	$(".bx_container ul li a").live("click",function(){
		
		var a = $(this).parent("li").attr("rel");
		
		var b = $(this).parent("li").attr("class");
		c = b.split(" ");
		
		$(".movieDescription").hide();
		$("#movieDesc-"+a).show();
		
		if (c[0] == "nohover"){
			$("#movieDesc-"+a).hide();
		}else{
			$("#movieDesc-"+a).show();
		}		
	});
	
	$(".base ul li a").live("click",function(){
		
		var a = $(this).parent("li").attr("rel");
		
		var b = $(this).parent("li").attr("class");
		c = b.split(" ");
		
		$(".movieDescription").hide();
		$("#movieDesc-"+a).show();
		
		if (c[0] == "nohover"){
			$("#movieDesc-"+a).hide();
		}else{
			$("#movieDesc-"+a).show();
		}		
	});
	
	var firstItem =  $($(".bx_container ul li")[0]).attr("class");
	var firstItemRel = $($(".bx_container ul li")[0]).attr("rel");
	
	//alert(firstItem);
	
	if (firstItem == "nohover"){
		$("#movieDesc-"+firstItemRel).hide();
	}
	
	
	
	var listCount = $(".countList").attr("rel");
	if(listCount <= 6)
	{
		$(".next, .prev").css("display","none");
	}
	
	
	
});


































