////HOMe page top image and panel scroller

 
$(document).ready(function() {
    //////main background image scroll
    $("#sp1").cycle({
		fx: "fade",
		speed:  5000
	});
	///scroll for text panel main background image
	$("#sp2").cycle({
		fx: "fade",
		speed:  5000
	});
	///new releases scroller
	$("#nrPanel").cycle({ 
    	fx:     "scrollDown", 
    	timeout: 6000, 
    	delay:  -2000,
    	pause: 1
	});
	
	
	
});

