			$(document).ready(function(){
				//Horizontal Sliding
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'325px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:160});
				});
				
				$('#slider-images').cycle({
			fx:      'fade',// see more options at http://malsup.com/jquery/cycle/options.html
			timeout:  8000, // time of the rotation
			speed:   800,
			pager:  '.nav-thumbs', 
			pagerAnchorBuilder: function(idx, slide) { 
			var src = $('img',slide).attr('src');
			return '<li><a href="#"><img src="' + src + '" width="50" height="30" alt="thumb" /></a></li>'; 
			} 
		});

			});
