$(document).ready(function(){ 
	//Sitespecific javascript here
	//Lightbox effect to gallery links
	//More information about this plug in http://www.gmarwaha.com/jquery/jcarousellite/#doc
	$('#gallery ul a').lightBox(
		{
		imageLoading: '/images/lightbox-ico-loading.gif',
		imageBtnClose:'/images/lightbox-btn-close.gif',
		imageBtnPrev: '/images/lightbox-btn-prev.gif',
		imageBtnNext: '/images/lightbox-btn-next.gif'

	}
	);
	
	//Initialize Carousell
	function myGallery() {
    $("#gallery").jCarouselLite({
        btnNext: "#gallery .next", //name of next button
        btnPrev: "#gallery .prev", //name of previous button
        visible: 9.5, 		//How many thumbs to be shown
        circular: "true", 	//Setting this to false will turn off the eternal scroll feature
        scroll: 5			//how many thumbs to scroll by clicking the next and previous buttons
    });
	}
	myGallery();

	
});
