// Rollover Images using JQuery
// Created by: Jared Pereira
// www.jaredpereira.com
 
var $j = jQuery.noConflict();
 
$j(document).ready(function(){
 
$j("img.a").hover(
function() {
$j(this).stop().animate({"top": "-141px"}, 150);
},

function() {
$j(this).stop().animate({"top": "0px"}, 150);
});


});


