/*	ClientName - js/jquery/functions.js

	jQuery-dependent functions
*/

$(window).load(function () {
	
	$('#slide-box').cycle({
		fx: 'scrollHorz',
		prev: '#slides-prev a',
		next: '#slides-next a',
		pauseOnPagerHover: 0,
		pause: 1,
		timeout: 10000,
		speed: 800
	});
	
	
	$('#submit').hover(
    	function () 
    	{
    		$(this).attr('style','color:#fff;border: 1px solid #ccc;background: #CD003B;cursor:hand;');
    	},
    	function () 
    	{
    		$(this).attr('style','');
    	}
    );
});

/* EOF */