
jQuery(function(){
	var $ = jQuery.noConflict()
	// init scroller
/*	$('#the_content_scroll, .home #main-content').jScrollPane({
		showArrows: true,
		animateScroll: false
	})
*/	
	$('#the_content_scroll').jScrollPane({
		showArrows: true,
		animateScroll: false
	})
	
	
	$('#popup_close a').click(function(){
		$('#the_gallery_popup').addClass('hidden')
		return false
	})
	
	// init gallery callback
	$('#the_gallery a').click(function() {
		var W = 530; 
		
		var nextA = $(this).parent().next().children('a')
		
		$('#popup_info').html( $(this).attr('alt') + ' &mdash; ' + $(this).attr('title') )
		
		
		$("<img src='"+$(this).attr('href')+"'>").bind({
				load: function() {
						if (this.width > W) {
							this.height = Math.round(this.height / this.width * W)
							this.width = W
						}
						$('#popup_image').html('').append(this)
						$('#the_gallery_popup').removeClass('hidden')
				      },
				click: function() { nextA.click() } 		
		})
		
		return false;
	})
})


