gallery = {
	init : function(){
		// webroot+"gallery/"
		$query = $('<div id="gallery" style="display:none"></div>');
		$('body').append($query);
		$('#btn_gallery').click(function(){
			if(window.console) console.log($query,$('a',this).attr('href'));
			$('#gallery').load($('a',this).attr('href'),{},function(data){
				$("a[rel^='prettyPhoto']").prettyPhoto({
					opacity:0.5,
					theme:'dark_square'
				});
				if(window.console) console.log($("a[rel^='prettyPhoto']")[0]);
				$($("a[rel^='prettyPhoto']")[0]).triggerHandler('click');
			});
			return false;
		});
	}
}

// on load
$(function(){
	gallery.init();
})