$j(document).ready(function($j) {
	init();
});

function init() {
	$j('a[rel*=facebox]').facebox();

	$j(".overout").mouseover(function(){
		$j(this).stop();
		$j(this).animate({ backgroundColor: "#3c3330"	}, 150 );
	});
	
	$j(".overout").mouseout(function(){
		$j(this).stop();
		//$j(this).animate({ backgroundColor: "#362D2A" }, 150 );
		$j(this).css({ backgroundColor: "transparent" });
  });
}
