    $(document).ready(function() {
        $('#slider').s3Slider({
            timeOut: 3000
        });

		$('.shine_hover').css("opacity","0.0");
		$('.shine_hover').css("background","url('images/gotoshop_hover.gif') top left no-repeat");

		$('.shine_hover').animate({opacity: 1.0}, 2000, function() {
			$('.shine_hover').animate({opacity: 0.0},2000, function() {	
			});
		});

	    setInterval(function() {
	      $('.shine_hover').animate({opacity: 1.0}, 2000, function() {
			$('.shine_hover').animate({opacity: 0.0},2000, function() {	
			  });
		  });
	    }, 6000);



    });
