var slide_dir = "/belle/slideshow/"

$(function(){

	$("#slideshow").crossSlide({
		sleep: 2,
		fade: 2
	}, [



		//  Edit just these images
		//  last line does not have a comma
		//  upload images in the admin > Edit Templates > images > belle > slideshow

		{
			src: images_dir+slide_dir+ "cottage-chic.jpg"
		},
		{
			src: images_dir+slide_dir+ "painted-furniture.jpg"
		},
		{
			src: images_dir+slide_dir+ "vintage-french.jpg"
		}



	])

/*
    $("#mycarousel").jcarousel({
        // Configuration goes here
        scroll: 1
    })
*/
    $("#mycarousel").jCarouselLite({
    	visible: 4,
        btnNext: ".next",
        btnPrev: ".prev"
    })

	//  set height of letsConnect div to height of container for full-height effect
	$(".letsConnect").height(
		$(".featuredTable").height()
	)
})

