// JavaScript Document

$(document).ready(function(){ 
	RO.rollover.init();
});

/* rollover function for all JPGs*/
RO = {};
RO.rollover =
{
	init: function()
	{
		$(".ro").hover(
			function ()
			{
				w = $(this).attr('width')/2;
				$(this).css({'left':"-"+w+"px"});
			},
			function ()
			{
				$(this).css({'left':'0px'});
			}
		);
	}
};	



