// JavaScript Document

$(document).ready(function(){

	// Rotate Ads

	$('#rotator').cycle({ 
		fx:				'fade',
		speed:		1234,
		timeout:	6543, 
		delay:		-2345,
		pause:		1,
		random:		0,
		pager:		'#pager'
	})
	.mousedown(function(){
		$('#rotator').cycle('stop');
	});

	$('#rotator').css('display','block');
});
