
$(document).ready(function() {
		   


	var y_fixo = $("#corretorOnLine").offset().top;
	$(window).scroll(function () {
		$("#corretorOnLine").animate({
			top: y_fixo+$(document).scrollTop()+"px"
			},{duration:500,queue:false}
		);
	});

	$('.alpha').stop().animate({
			opacity: 0.5
	}, "fast");
	
	$('.alpha')
	
		.mouseover(function(){
			$(this).stop().animate({
					opacity: 1
			}, "fast");
		})
		
		.mouseout(function(){
			$(this).stop().animate({
					opacity: 0.5
			}, "fast");
	})

});


Shadowbox.init({

	language:   "pt-BR",
	players:    ["img","swf","html","iframe"],
	height:     416,
	width:      701
});

