// Abrir modais

$(document).ready(function(){
	$("a[rel='teste2']").colorbox({iframe:true, innerWidth:800, innerHeight:630}) // para link href
	$(".teste").colorbox({iframe:true, innerWidth:800, innerHeight:530}); // para class

	$("a[rel='images_big']").colorbox({iframe:true, innerWidth:700, innerHeight:450}) // para link href

});

	function popup(url, nwidth, nheight) {
	var width = nwidth;
	var height = nheight;
	var left = (screen.width - width)/2;
	var top = (screen.height - height)/2;
	var params = 'width='+width+', height='+height;
	params += ', top='+top+', left='+left;
	params += ', location=no';
	params += ', directories=no';
	params += ', menubar=no';
	params += ', resizable=no';
	params += ', scrollbars=no';
	params += ', status=no';
	params += ', toolbar=no';
	newwin = window.open(url, 'titulo', params);
	if(window.focus) {
	newwin.focus();
	}
	return false;
	}
 
