function galleryC() {
	//loadit();
	//loadGallery();
	categs();
}
function categs() {
	var nav = $$('#galList li a');
	nav.each(function(e){
		e.addEvent('click',function(el){
			el = new Event(el).stop();
			loadAjax(e.getProperty('href'),$('loadCont'),false,false,true);
		});
	});
}

function home_gallery(cont) {
	if( $('watch_gallery') ) {
		$('watch_gallery').addEvent('click',function(el){
			openSite(el,$('gallery_el'),cont);
		});
	}
	var list = $$('#last_added .lastthumb');
	list.each(function(e){
		var mov = e.getProperty('title');
		e.addEvent('click',function(el){
			openSite(el,$('gallery_el'),cont,mov);
		});
	});
}
