$(document).ready(function() {
	if (section == 'servicii') {
		// get the hash
		var page = location.hash;
		
		// show the correct page
		$(page).slideDown();
	}
});

function checkEmail(inputvalue) {	
    var pattern=/^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\.([a-zA-Z])+([a-zA-Z])+/;
    if (pattern.test(inputvalue)) {
        return true;
    } else {
        alert('Adresa de email introdusa nu este corecta.');
        return false;
    }
}
