// preload images
jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

// rollover images
$(document).ready(function(){

    $('.rollover').hover(function(){
        img = $(this);
        curImg = $(this).attr('src');
        rplImg = curImg.replace('-off','-on');
        $(this).attr('src',rplImg);
    },function(){
        $(img).attr('src',curImg);
    })

});
