// JavaScript Document
$(function(){
	$("#banners_normal").cycle({
    fx:     	'scrollLeft',
	speed:		1000,
    random:        1,
    timeout:	5000
    });
	$("#banners_premium").cycle({
    fx:     	'scrollDown',
	speed:		1000,
    random:        1,
    timeout:	15000
    });
	$("#banners_normal,#banners_premium").hover(function(){$(this).cycle('pause');},function(){$(this).cycle('resume');});
});

