jQuery(function($){
	$('.scroll').jScrollPane();
	
	if($('#item-details').length) {
		$('#gallery-thumbs a').hover(
			function() {
				$(this).fadeTo(200,0.8);
			},
			function() {
				$(this).fadeTo(200,1);
			}
			).click(function(e) {
			e.preventDefault();
			$('#item-details').html('<span class="loading">loading</span>');
			var self = $(this);
			$('#item-details').lightbox_me({
				zIndex : 9999,
				centered:true,
				onLoad : function() {
					var url = $('#item-details').data('url');
					var id = self.data('id');
					$('#item-details').load(url + '?id=' + id);
				}
			}
			);	
		
		});
	}
});
