$(document).ready(function() {
    
	//link vari
	$('td.rlink').each(function() {
		link_id = $(this).text();
		newlink = '<a href="http://www.scalareale.it/sr_traslochi/admin.php?op=ViewRichieste&amp;qid=' + link_id + '">' + link_id + '</a>';
		$(this).html(newlink);
	});
	$('.ind_pel').each(function() {
		link_text = $(this).text();
		newlink = '<a href="mailto:' + 'info' + '@' + 'scalareale' + '.it">' + link_text + '</a>';
		$(this).html(newlink);
	});
	$('.mini_home').click( function() {
		//vlink = $(this).find('a').attr('href').split('/');
		vlink = $(this).find('a').attr('href').replace('http://www.scalareale.it/', '');
		//alert(vlink);
		location.href = vlink;
		}
	);

	//link esterni
	$('a.nw').click(function() {
		window.open(this.href);
		return false;
	}).attr('title', 'Nuova finestra - Link esterno');    

	//angoli arrotondati
	$('.mini_home').corners('6px');
	$('.intro').corners('6px');
	$('.domanda').corners('6px');
	$('p.pr').corners('top-left bottom-left 4px');
	$('.titlesbk').corners('6px');
	$('.title_desc').corners('12px');
	$('.titolo_prod').corners('4px');
	//$('.menu_sup_off,.menu_sup_on').corners('top-left top-right 8px');
	
});
