$(document).ready( function()
{
	$('#thumbs a').click( function()
	{
		var image_id = ($(this).attr('rel'));
		$('#profile-image-block img').hide();
		$('#'+image_id).show();
		return false;
	});
});

function clearInput(ele, val){
	if(ele.value == val){
		ele.value='';
	}
}