$(document).ready(function() {
	Tabs.init();
	if ($("#formulario-contacto").length > 0)
		$("#formulario-contacto").validate();
	$("a.google-maps").fancybox( { width: 645, height: 475, hideOnContentClick: false, 'type'	: 'iframe'});
	if ($("a.fancybox").length > 0) {
		$("a.fancybox").fancybox();
	}
});


var Tabs = {

	init: function () {
		$(".tab-content").hide();
		$("#id-lorca").show();
		$("#contactar-centros a").click(function() {
			$("#contactar-centros li").removeClass("selected");
			$(this).parent().parent().parent().addClass("selected");
			id = $(this).attr("href");
			$(".tab-content").hide("slow");
			$(id).show("slow");
			return false;
		});
	}
}


function blank(itemform) {

	if(itemform.id == $("#" + itemform.id).val()) {
		$("#" + itemform.id).val('')
	}


}

