var scriptSrc = ''

$(document).ready(function(){

	// Get the source directory of this script
	scriptSrc = $('script[@src$=jquery.js]').attr('src').replace('js/jquery.js', '');
	
	jQuery('#imagelist').jcarousel({
		scroll: 1,
		wrap: 'both',
		buttonNextHTML: '<a href="javascript: void(0);" class="next"></a>',
		buttonPrevHTML: '<a href="javascript: void(0);" class="prev"></a>'
    });
    
    // Make the gallery thumbnails into backgrounds
    $('#gallery .thumb').each(function(){
		thisItem = $(this);
		thisImg = $('img', thisItem);
		thisItem.css({backgroundImage: 'url('+thisImg.attr('src')+')'}); 
		thisImg.hide();
    });
    
    $('#gallery .thumb').lightBox();
});
