//
//	Created by Luca Orio
//	Copyright (c) 2009 t-immagine. All rights reserved.
//	ver. 0.1
// 


//#################################################################################################//
//------------------------------------------------------------------------------------------------//
//
//	TOGGLE VALUE ON FOCUS                                                                         //
//
//------------------------------------------------------------------------------------------------//
//#################################################################################################//


function toggleValueOnFocus(){
	$('.clearMeFocus').focus(function(){
	});
	$('.clearTextFocus').focus(function(){
		$(this).val('');
	});
}