/* Code by Giancarlo "GM" Moschitta (info@myphp.it) and Negatyve (http://www.negatyve.com) Powered by jQuery (http://jquery.com)) */
function initAdvertorial()
{
	jQuery('.advertorial-sponsor .toggle').click
	(
		function(){ advertorialShowMore( jQuery(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( jQuery(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( jQuery(this) ); return false; } );
}
jQuery( document ).ready( initAdvertorial );
