$(function() {
	
    $(".car").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        auto: 3500,
        visible: 6

    });
    $("#accordion").accordion({ header: "h3", autoHeight: false, collapsible: true, active: false  });
    $("#accordion_two").accordion({ header: "h3", autoHeight: false, collapsible: true, active: false  });

    swapValue = [];
	$(".swap-value").each(function(i){
	swapValue[i] = $(this).val();
   	$(this).focus(function(){
      if ($(this).val() == swapValue[i]) {
         $(this).val("");
      }
    $(this).addClass("focus");
   	}).blur(function(){
      if ($.trim($(this).val()) == "") {
         $(this).val(swapValue[i]);
	 $(this).removeClass("focus");
      }
   });
});
});
