$(document).ready(function(){

	//muestra las capas de los elementos que usan javascript
	$(".js_show").show();
	$(".js_hide").hide();

	//open rel=external on different window
	$(function() {
	    $('a[rel*=external]').click( function() {
	        window.open(this.href);
	        return false;
	    });
	});
	$(function() {
	    $('area[rel*=external]').click( function() {
	        window.open(this.href);
	        return false;
	    });
	});

});




