$(document).ready(function(){
	$('INPUT').click(function(){
		if ($(this).attr('value') == $(this).attr('title')) $(this).attr('value', '');
	});
	$('INPUT').blur(function(){
		if ($(this).attr('value') == '') $(this).attr('value', $(this).attr('title'));
	});

	$(".sidebar SELECT").selectbox();
});
