$(document).ready(function(){
	$('#topbar .toppanellist .description').hover(function(){
		var strHref=$(this).find('a').attr('href');

		if(!strHref==''){
			$(this).addClass('over');
			$(this).click(function(){
				window.location=strHref;
			});
		}
	},function(){
		$(this).removeClass('over');
	});
});

