$(function(){

	// switch stylesheet
	$.stylesheetInit();
	$('.styleswitch').bind( 'click', function(e) {
		$.stylesheetSwitch(this.getAttribute('rel'));
		return false;
	});

	// carousel for gallery pages
	$("#selector").jCarouselLite({
		btnNext: ".slide-next",
		btnPrev: ".slide-prev",
		visible: 4,
		scroll: 4,
		speed: 650
	});
	$(".load-thumb").click(function(){
		var loadThis = $(this).attr('href');
		$("#displayarea").html("<img src='"+loadThis+"'>");
		return false;
	});

});

