var $j = jQuery.noConflict();

$j(document).ready(function(){
    $j('h4').hover(function() {
	$j(this).css({
	    'background-position':'0 -69px',
	    'cursor': 'pointer'
	});
    },function() {
	$j(this).css({
	    'background-position':'0 0px',
	    'cursor': 'pointer'
	});
    });
    $j('h4').click(function() {
	window.location=($j(this).find('a').attr('href'));
    });
});