function anichange (objName) {
  if ( $(objName).css('display') == 'none' ) {
    $(objName).animate({height: 'show'}, 300);
    $('#txt2').animate({height: 'show'}, 200);
  } else {
    $(objName).animate({height: 'hide'}, 300);
    $('#txt2').animate({height: 'hide'}, 200);
  }
}

  $(document).ready(function(){

	$("#c1").bind("mouseenter",function() {
		$("#txt").fadeIn("fast").animate( { opacity:".8" }, 100 );
		$("#txt2").animate({height: 'show'}, 200);
	});		
	$("#c1").bind("mouseleave",function() {
		$("#txt").fadeOut("fast").animate( { opacity:"" }, 100 );
		$('#txt2').animate({height: 'hide'}, 200);
	});

    $('#c11').bind("mouseenter mouseleave", function(e){
	  if ( $('#txt').css('display') == 'none' ) {
        $('#txt').show()
	  			   .animate( { opacity:".8" }, 500 );
		$('#txt2').animate({height: 'show'}, 200);
	  } else {
        $('#txt').animate({height: 'hide'}, 300);
		$('#txt2').animate({height: 'hide'}, 200);
	  }
    });

    $(".slide li div.car").bind("mouseenter mouseleave", function(e){
        $(this).toggleClass("over1");
    });

    $(".right").bind("mouseenter mouseleave", function(e){
        $(this).toggleClass("over");
    });
	    
  });
  
  
function another (objName) {
  if ( $(objName).css('display') == 'none' ) {
    $(objName).animate({height: 'show'}, 300);
		$('.arrow-another').toggleClass("arrow-another-on");
  } else {
    $(objName).animate({height: 'hide'}, 300);
		$('.arrow-another').toggleClass("arrow-another-on");
  }
}