// prepare the form when the DOM is ready 
$(document).ready(function() {
	$( ".big_thumbnail,.small_thumbnail" ).hover(
		function () {
			$(this).css({'cursor' : 'pointer'});
		}, 
		function () {
			$(this).css({'cursor' : 'null'});
		}
	);

});