$(document).ready(function(){
	Cufon.replace('.avantgarde', {hover: true});

	$('#ba_closed_titulo').click(function() {
   		$('#ba_open').slideUp();
   		$('#ba_closed_titulo').hide();
   		$('#ba_open_titulo').fadeIn('slow');
  	});
    	
  	$('#ba_open_titulo').click(function() {
   		$('#ba_open').slideDown();
   		$('#ba_open_titulo').hide();
   		$('#ba_closed_titulo').fadeIn('slow');
	});
	
	$('#ba_open').find("select").each(function(i) {
		$(this).change(function() {
			$('#fm-oportunidades').submit();
		});
	});
	
	$('#exp_right').click(function() {
		the_margin = parseInt($('#exp_center ul').css('marginLeft')) - 66;
		if (the_margin < (0 - parseInt($('#exp_center ul li').size() - 4) * 66)) the_margin = (0 - parseInt($('#exp_center ul li').size() - 4) * 66);
		$('#exp_center ul').animate({
			marginLeft: the_margin + 'px'
		}, 300, function() {
		});
	});
	
	$('#exp_left').click(function() {
		//alert(parseInt($('#exp_center ul').css('marginLeft')));
		the_margin = parseInt($('#exp_center ul').css('marginLeft')) + 66;
		if (the_margin >= 6) the_margin = 6;
		$('#exp_center ul').animate({
			marginLeft: the_margin + 'px'
		}, 300, function() {
		});
	});

	$('#exp_right_oportunidades').click(function() {
		the_margin = parseInt($('#exp_center_oportunidades ul').css('marginLeft')) - 66;
		if (the_margin < (0 - parseInt($('#exp_center_oportunidades ul li').size() - 1) * 66)) the_margin = (0 - parseInt($('#exp_center_oportunidades ul li').size() - 1) * 66);
		$('#exp_center_oportunidades ul').animate({
			marginLeft: the_margin + 'px'
		}, 300, function() {
		});
	});
	
	$('#exp_left_oportunidades').click(function() {
		//alert(parseInt($('#exp_center ul').css('marginLeft')));
		the_margin = parseInt($('#exp_center_oportunidades ul').css('marginLeft')) + 66;
		if (the_margin >= 6) the_margin = 6;
		$('#exp_center_oportunidades ul').animate({
			marginLeft: the_margin + 'px'
		}, 300, function() {
		});
	});

	
});

function ba_post_value(value) {
	$('#ob').val(value);
	$('#fm-oportunidades').submit();
}
