$(document).ready(function()
{
	$("#button").click( function()
	{
		//pageTracker._trackPageview('/signup/home');
		_gaq.push(['mp3._trackEvent', 'signup', 'home']);
		_gaq.push(['ciaopeople._trackEvent', 'signup', 'home']);
	});


	$(".search-box-txt-central").focus( function()
	{
		//gestione focus
		$(this).attr('value' , '');
	});

	$(".search-box-txt-central").blur( function()
	{
		//gestione blur
		if( $(this).attr('value') == '' )
			$(this).attr('value' , 'cerca un artista o un brano...');
	});

});

