$(document).ready(function() {
	$("a").each(function() {
		if($(this).attr("target").length == 0) {
			$(this).attr("target", "_self");
		}
	});
});

$(".controlla").live("submit", function() {

	go = 1;

	$(".controlla .required:input").each(function() {
		if($(this).val().length == 0) {
			go = 0;
			$(this).parent().effect("bounce");
			$(this).animate({ 
				backgroundColor: 'pink'
			}).animate({
				backgroundColor: 'white' 
			});
		}
	});
	if(go == 0)
		return false;

});
