$(document).ready(function(){

	// First item is selected
	$('#sectionGalleryItems>li:first-child li:first-child').addClass("selected");
	
	// Assign click handler
	$('#sectionGalleryItems a').click(function(){
		$('#sectionGalleryItems li.selected').removeClass("selected");
		$(this).parent().addClass("selected");
		$('#sectionGallery>p a').attr('href', $(this).attr('href'));
		$('#sectionGallery>p img').attr('src', $(this).attr('rel'));
		$('#sectionGallery>p strong').html($(this).attr('title'));
		return false;
	});
	
	// Skip IE6
	if(typeof document.body.style.maxHeight === "undefined") return;

	// Activate carousel
	$('#sectionGalleryItems').addClass('jcarousel-skin-sectionGallery');
	$('#sectionGalleryItems').jcarousel({scroll:1});
	if ($('#sectionGalleryItems>li').length < 2) {
		// hide buttons
		$('#sectionGallery div.jcarousel-prev, #sectionGallery div.jcarousel-next').hide();
	}

});

