$(document).ready(function(){
	$('#mainbar2 .list .item,#content .zone2 .panel').not('.nolink').hover(function(){

		if($(this).find('a').length>0){

			$(this).addClass('over');

			var strHref=$(this).find('a').attr('href');

			$(this).click(function(){
				window.location=strHref;
			});
		}

	},function(){
		$(this).removeClass('over');
	});
});

