$(document).ready(function(){
	$(".ajax").colorbox();
	$(".iframe").colorbox({iframe:true, innerWidth:800, innerHeight:600});
	$("a[rel='slideshow']").colorbox({maxWidth:800, maxHeight:600, slideshow:false, current:"{current} de {total}"});
	$(".box-inline").click(function(){ 
        var url = $(this).attr('href'); 
        $.fn.colorbox({width:440, initialHeight:500, speed:1000, scrolling: false, inline:true, href: url });
    });					   
    $("a.colorbox").colorbox({
        current: 'imagem {current} of {total}',
        previous: "anterior",
        next: "próxima",
        close: "fechar"
    });
	$('.popup').colorbox({open:true});
});

