$(document).ready(function(){
	$('a.ventanaNueva').click(function(){
		window.open($(this).attr('href'), '_blank');
		return false;
	});
	
	/*** Flash ***/
	/*$(function() {
		$('.media').media({ 
			autoplay:  true,
			flashvars: { autostart: 'true' } , 
			params:    { wmode: 'transparent', quality: 'high' },
			caption:   false
		}); 
	});*/
});