function quicka (){
	try
	{
		var value = document.getElementById( 'quicklink' ).value;
		var domain = document.domain.toLowerCase();
		value = value.toLowerCase(); //case insensitive
		//sostituzioni
		if ( value.search ( 'http://' ) > -1 ) value = value.replace( 'http://' , '' );
		if ( value.search ( 'www.' ) > -1 ) value = value.replace( 'www.', '' );
		if ( domain.search ( 'www.' ) > -1 ) domain = domain.replace( 'www.', '' );
		if ( value.search ( domain + '/' ) > -1 ) value = value.replace( domain + '/' , '' );
		if ( ! value ) return false;
		var address = 'http://' + document.domain + '/' + value;
		document.location.href = address;
	} catch ( e )	{
		//.. do nothing
	}
}

$( document ).ready ( function() {
	$( '#inserto' ).html( $( '#inserto-sorgente' ).html () );
	$( '#inserto-sorgente' ).remove();
	$( '#inserto-voto' ).html( $( '#inserto-voto-sorgente' ).html () );
	$( '#inserto-voto-sorgente' ).remove();
});
