    $(document).ready(function(){
		$("#artist_photobox").jCarouselLite({
	        btnNext: ".next_jCar",
	        btnPrev: ".prev_jCar",
			circular: false,
			visible: 4
	    });
		if ( $("#artist_photobox>ul>li").length > 4 ) { $(".next_jCar").removeClass("disabled"); }
	    $("#exhibition_photobox").jCarouselLite({
	        btnNext: ".next_jCar",
	        btnPrev: ".prev_jCar",
			circular: false,
			visible: 3
	    });
		if ( $("#exhibition_photobox>ul>li").length > 3 ) { $(".next_jCar").removeClass("disabled"); }
		$("#gallery_photobox").jCarouselLite({
		    btnNext: ".next_jCar",
		    btnPrev: ".prev_jCar",
		    circular: false,
			visible: 4
		});
		if ( $("#gallery_photobox>ul>li").length > 4 ) { $(".next_jCar").removeClass("disabled"); }

		$(".widget img").click(function() {
		    $(".widget .mid img").attr("src", $(this).attr("rel"));
		})
	    /* $('.thumbs').piroBox({
	       border: 5, 
	       borderColor: '#333333',
	       mySpeed: 100, 
	       bg_alpha: 0.3,
	       cap_op_start : 0.5,
	       cap_op_end: 0.8,
	       pathLoader : '#000 url(/js/css_pirobox/ajax-loader.gif) center center no-repeat;', 
	       gallery : '.gallery li a', 
	       gallery_li : '.gallery li', 
	       single : '.single a',
	       next_class : '.next_in ',
	       previous_class : '.previous_in '
	    }); */
		$("a[rel^='prettyPhoto']").prettyPhoto({
					animationSpeed: 'fast',
					padding: 20,
					opacity: 0.7,
					showTitle: false,
					allowresize: true,
					counter_separator_label: ' of '
				});
});