var $j = jQuery.noConflict();
$j(document).ready(function(){
	$j("#bot-menu").hide();
	$j(".tri").click(function(){
	 if(document.getElementById('bot-menu').style.display == "none"){
		$j("#bot-menu").slideToggle(function(){
				$j.scrollTo($j('#bot-menu'),{speed: 1000});
				$j(".tri").html("Extra");
		});
	}else{
			$j("#bot-menu").fadeOut(function(){
				$j(".tri").html("Extra");
			});	
		}
    });	
	
	/* Widget */
	$j('#li').click(function(){
		$j('#iibox').hide();
		$j('#fcbox').hide();
		$j('#nav').css('borderColor', '#fdbb2f');
		$j('#libox').fadeIn(500);
		
	});
	
	$j('#ii').click(function(){
		$j('#libox').hide();
		$j('#fcbox').hide();
		$j('#nav').css('borderColor', '#007162');
		$j('#iibox').fadeIn(500);
	});
	
	$j('#fc').click(function(){
		$j('#libox').hide();
		$j('#iibox').hide();
		$j('#nav').css('borderColor', '#ef3026');
		$j('#fcbox').fadeIn(500);
	});
	
	/* Widget 2*/
			$j('#carwid5_right').click(function(){
					
				if($j('#carwid5_imgwrap').css('marginLeft')=='0px'){
						$j('#carwid5_imgwrap').animate({marginLeft: '-114px'},500)
				}
				
				if($j('#carwid5_imgwrap').css('marginLeft')=='-114px'){
						$j('#carwid5_imgwrap').animate({marginLeft: '-228px'},500)
				}
				
				if($j('#carwid5_imgwrap').css('marginLeft')=='-228px'){
						$j('#carwid5_imgwrap').animate({marginLeft: '0px'},500)
				}
			
			})

			$j('#carwid5_left').click(function(){
					
				if($j('#carwid5_imgwrap').css('marginLeft')=='0px'){
						$j('#carwid5_imgwrap').animate({marginLeft: '-228px'},500)
				}
				
				if($j('#carwid5_imgwrap').css('marginLeft')=='-114px'){
						$j('#carwid5_imgwrap').animate({marginLeft: '0px'},500)
				}
				
				if($j('#carwid5_imgwrap').css('marginLeft')=='-228px'){
						$j('#carwid5_imgwrap').animate({marginLeft: '-114px'},500)
				}
			
			})
	
}); 

