$(function(){
	$('#featured-market-image').innerfade({
				animationtype: 'fade',
				speed: 750,
				timeout: 5000,
				type: 'sequence',
				containerheight: '433px'
			});

	//function for contact form dropdown
	function contact() {
		if ($("#contactForm").is(":hidden")){
			$("#contactForm").slideDown("slow");
		}
		else{
			$("#contactForm").slideUp("slow");
		}
	}
	//run contact form when any contact link is clicked
	$(".contact").click(function(){contact()});
	$('.lower-box').first().css('border', 'none');
	
	$(".carousel").jCarouselLite({
        btnNext: ".carousel-next",
        btnPrev: ".carousel-prev",
        visible: 4
    });
    
    $(".carousel-title").hide();
    $(".carousel-item").hover(
  				function() { $(this).children(".carousel-title").show(); },
  				function() { $(this).children(".carousel-title").hide(); }
			);
}); 
