// JavaScript Document
			$(document).ready(function(){
				$('.sidegrid.sidecaption').hover(function(){
					$(".sidecover", this).stop().animate({top:'0',opacity:'0.8px'},{queue:false,duration:160});
					$(".sidesliderimage", this).stop().animate({opacity:'1'},{queue:false,duration:160});
				}, function() {
					$(".sidecover", this).stop().animate({top:'60px',opacity:'0.4px'},{queue:false,duration:160});
					$(".sidesliderimage", this).stop().animate({opacity:'0.8px'},{queue:false,duration:160});
				});
				
				$(".sidecover", this).stop().animate({top:'60px',opacity:'0.4px'},{queue:false,duration:160});
				$(".sidesliderimage", this).stop().animate({opacity:'0.8px'},{queue:false,duration:160});
			});

