$(document).ready(function(){
	panelsBigTarget();
});

function panelsBigTarget(){
	$('#list-splash .item').each(function(i){

		var strHref=$(this).find('a.text_home').attr('href');

		if(strHref!=null){
			strNewWindow=$(this).find('a.text_home').attr('rel');

			$(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;
				}
			});
		}
	});
}

