// Emulation target_blank
jQuery(document).ready(function(){
	    jQuery("._blank a").click(function(){
	        window.open(this.href);
	        return false;
	    });
	});	
	
// First h1, h2, h3, h4, h5, h6 without top-margin
jQuery(document).ready(function(){
	    jQuery(".content-page :header:first-child").addClass("h-first-child");
	});

// Last li top-menu without background
jQuery(document).ready(function(){
	    jQuery("ul.top-menu li:last").addClass("li-top-menu-last");
	});




