var $j = jQuery.noConflict();

$j(document).ready(function () {

$j(".gallery_list_container a").click(function() {
	var dir = $j(this).attr("title");
	$j(".gallery_container").empty().html('<img src="/wp-content/themes/shoxty/images/ajax-loader.gif" />');
	$j('.gallery_container').load("/photo_gallery/getPhotos.php",{directory:dir}, function(){
		initLightbox();
	});
	
	return false;
});

});

function noSpam(account, domain) {
	self.location = 'mailto:'+account+'@'+domain;
}