$(document).ready(function(){
	/* This code is executed after the DOM has been completely loaded */

	$('.hot_button').hover(function(){

		/* On a rollover */
		$(this).addClass("rollover", 1000);  

	}, function(){
				 
		$(this).removeClass("rollover", 1000);

		}
	);
});
