/*
 * 
 * JavaScript comune a tutte le pagine
 * 
 * */


function emailCheck(email) {
	   var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
	   return !reg.test(email); 
	}


$(function(){

	// a > img border bottom fix & blur on click
	$("a img").parent("a")
		.css("border-bottom","none")
		.click(function(){$(this).blur()})
		

	
})

