// JavaScript Document
$(document).ready(function(){ 
        

	//makes the sign in form slide down
	$('#signin-toggle').click(function(){
		$('.mini-account .signin-form').slideDown({easing:'easeOutBounce',duration:1000});
		return false;
	});
	
	//adds roller effect to buttons
	$('.btn').mouseover(function(){
		$(this).css({'background-position': '0 -28px'});
	});	
	$('.btn').mouseout(function(){
		$(this).css({'background-position': '0 0'});
	});
	
	//creates the best sellers slider
	$('.best-sellers').cycle({ 
		random:1,
		fx:'scrollDown',
		easing: 'easeOutBounce',
		delay:-10000,
		speed:3000,
		timeout:9000,
		pause:1
	});

});