$(document).ready(function(){
    $("input,textarea").live("focus",function(){
		if($(this).val() == ""){
			$(this).parent().find("img").fadeOut();
		}
    });
    $("input,textarea").live("blur",function(){
		if($(this).val() == ""){
			$(this).parent().find("img").fadeIn();
		}
    });
	$("fieldset img").click(function(){
		$(this).parent().find("input,textarea").focus();
		$(this).fadeOut();
		return false;
	});
	$(".btnscroll").click(function(){
		var pos = $(".ancora[name='"+$(this).attr("href").replace("#","")+"']").offset();
		$('html,body').animate({scrollTop:pos.top},500);
		return false;
	});
});
