$(document).ready(function(){
	panelsBigTarget();
});

function panelsBigTarget(){
	$('#navmaincol .panel,#rightcol .panel').each(function(i){

		var strHref=$(this).find('h6.main a').attr('href');

		if(strHref!=null){
			strNewWindow=$(this).find('h6.main a').attr('rel');

			//alert(strNewWindow);

			//$(this).css('cursor','pointer');

			$(this).hover(function(){
				$(this).addClass('over');
			},function(){
				$(this).removeClass('over');
			});

			$(this).click(function(){
				if(strNewWindow=='external'){
					window.open(strHref);
					return false;
				}else{
					window.location=strHref;
				}
			});
		}
	});
}

