// JavaScript Document
$(document).ready(function() {
// initialisation scroll gallery
			$(function() {
					   $('#gallery').livequery(function()
			{
				// this initialises the demo scollpanes on the page.
				$('#gallery').jScrollPane();
				});
					   });

// lightbox initialisation
	$(function() {
		$("#gallery a").livequery(function(){ $("#gallery a").lightBox({fixedNavigation:true}); }); 
	});
	
//	scroll

$(function() {
		$("#mycustomscroll").livequery(function()
			 { 
				$("#mycustomscroll").jScrollPane();
			 }); 
	});


// apply to all png images 
$('img[src$=.png], #content').livequery(function()
	{	
		$(this).ifixpng();
	});
});
