$(function() {$('.gallery a').lightBox();$('#gallery2 a').lightBox();$('#gallery3 a').lightBox();});
	
$(window).ready(function(){
	$("#compartilharAmigo").hide();
	$(".enviar").click(function(){
		$(".enviar").toggleClass('compartilharBorder');
		$("#compartilharAmigo").toggle();
	});
});

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel();
});

$(document).ready(function() {  
	$('#rotator').cycle({
		fx: 'fade',
		cleartype: !$.support.opacity,
		delay:  -1000,
		timeout: 5000,
		speed:  'fast',
		pause: true,
		fastOnEvent: true,
		prev: '#prev',
		next: '#next',
		pagerEvent: 'mouseover',
		pager: "#pager",
		pagerAnchorBuilder: function(idx, slide){
			return '<a href="#">'+ slide.rel+'</a>';
		}
	});
});


$(document).ready(function() { 
	$('#news').cycle({ 
    fx:'custom', 
    sync: 1,
	cleartype: false,
	pause: true,
	fastOnEvent: true,
    cssBefore: {  
        top:  0, 
		left: 600,
        display: 'block'
    },
	cssAfter: { display: 'none'},
    animIn:  { //entrada
        top: 0,
		left: 0
    },
	delay:  -1000,
	timeout: 3000,
	speed: 3000
	 });
});



function enviarOrkut(titulo, subtitulo, link, imgParentSelector){
	var params = {};
	params[google.orkut.share.Field.TITLE] = titulo;
	params[google.orkut.share.Field.DESTINATION_URL] = link;
	imgs = [];
	$( imgParentSelector+' img').each(function() {
		imgs.push($(this).attr('src'));
	});
	params[google.orkut.share.Field.CONTENT] = subtitulo;
	params[google.orkut.share.Field.THUMBNAIL] = imgs;
	var connection = new google.orkut.share.Connection(params);
	connection.send('orkut.com', {}); 
}
