jQuery(document).ready(function() {
	jQuery("#precos .click").bind("mouseover", Over);
	jQuery("#precos .click").bind("mouseout", Out);

	jQuery("#motivosList .btLeft").bind("mouseover", MotiveOver).bind("mouseout", MotiveOut);
	jQuery("#motivosList .btRight").bind("mouseover", MotiveOver).bind("mouseout", MotiveOut);

  // scroll
  $("#slider").jCarouselLite({
  	visible: 1,
  	auto: 7000,
  	speed: 100,
  	circular: true
  });

});

function Over(e)
{
	jQuery( e.target ).next().css("background-position","left bottom");
	jQuery( e.target ).parent().find('.ccLeft').css("background-position","left bottom");
	jQuery( e.target ).parent().find('.ccRight').css("background-position","left bottom");
}

function Out(e)
{
	jQuery( e.target ).next('.bot').css("background-position","left top");
	jQuery( e.target ).parent().find('.ccLeft').css("background-position","left top");
	jQuery( e.target ).parent().find('.ccRight').css("background-position","left top");
}

function MotiveOver(e) { jQuery(e.target).css("background-position","left bottom") };
function MotiveOut (e) { jQuery(e.target).css("background-position","left top") };

