$(document).ready(function() {
	$("#id_q").focus(function() {
		$(this).attr({
			value: ""
		});
	});
	
	$("#id_q").blur(function() {
		var value = $(this).attr("value");
		if (value == "") {
			$(this).attr({value: "cerca"});
		}
	});
	
	/*$(".rollover").mouseover(function() {
		var src = $(this).attr('src');
		src = src.replace(/_bw.png/ig, '.png');
		$(this).attr('src', src);
	});
	
	$(".rollover").mouseout(function() {
		var src = $(this).attr('src');
		src = src.replace(/.png/ig, '_bw.png');
		$(this).attr('src', src);
	});
	*/
});

