/**
 * Code by Giancarlo "GM" Moschitta (info@myphp.it) and Simone "negatyve" Auteritano (negatyve@negatyve.com)
 * Powered by jQuery (http://jquery.com))
**/
function initAdvertorial()
{
	$('.advertorial-sponsor .toggle').click
	(
		function(){ advertorialShowMore( $(this) ); return false; }
	);
}
function advertorialShowMore( link )
{
	var t = 'Nascondi testo';
	link.parent().find( '.more' ).show();
	link.attr( 'title', t ).html( t ).unbind().click( function(){ advertorialHideMore( $(this) ); return false; } );
}
function advertorialHideMore( link )
{
	var t = 'Leggi tutto';
	link.parent().find( '.more' ).hide();
	link.attr( 'title', t ).html( t ).unbind().click( function(){ advertorialShowMore( $(this) ); return false; } );
}
$( document ).ready( initAdvertorial );