$(document).ready(function(){
	
	$(".over").livequery( 
	function (){
		$(this).mouseover(function(){
			var ext=$(this).attr('src').substring($(this).attr('src').length-4,$(this).attr('src').length);
			$(this).attr('src', $(this).attr('src').replace('_over','')   );
			$(this).attr('src', $(this).attr('src').replace(ext,'_over'+ext)   );
			//alert(  );
			
	    })
	    .mouseout(function(){
	    	var ext=$(this).attr('src').substring($(this).attr('src').length-4,$(this).attr('src').length);
	    	$(this).attr('src', $(this).attr('src').replace('_over'+ext,ext)   );
	    });
	});
	
});

$(document).ready(function(){
	
	$(".linkPointer").livequery( 
	function (){

		 $(this).hover( 
			function () { $(this).css('cursor','pointer'); },
			function () { $(this).css('cursor','default'); } 
		);
	});
	
});




