// JavaScript Document


$(document).ready(function(){

			

				$('.article_selector .grid_9').hover(function(){
					$("div.rollover_details", this).stop().animate({top:'-150px'},{queue:false, duration:160, easing:'easeOutSine'});
				}, function() {
					$("div.rollover_details", this).stop().animate({top:'-114px'},{queue:false, duration:160, easing:'easeOutSine'});
				});
				
				$('.article_selector .grid_3').hover(function(){
					$("div.rollover_details", this).stop().animate({top:'-110'},{queue:false, duration:160, easing:'easeOutSine'});
				}, function() {
					$("div.rollover_details", this).stop().animate({top:'-81'},{queue:false, duration:160, easing:'easeOutSine'});
				});
				
				
				$('.article_selector .grid_6').hover(function(){
					$("div.rollover_details", this).stop().animate({top:'-110'},{queue:false, duration:160, easing:'easeOutSine'});
				}, function() {
					$("div.rollover_details", this).stop().animate({top:'-81'},{queue:false, duration:160, easing:'easeOutSine'});
				});
										
	
	
								
});

