// JavaScript Document

// To use any effect just remove the comment &amp; change respective selectors

 $(document).ready(function(){							
		$('#rightcol span img').hover(function(){
			$(this).stop().animate({
			marginTop: '6px'
			}, 200);
			}, function(){
			$(this).stop().animate({
			marginTop: '11px'
			}, 200);
		});   				
		
  });		
