﻿retro_gallery={
	el:{
		bGallery:null,
		bPopClose:null,
		popGallery:null
	},
	initEl:function(){
		var el=this.el;
		el.bGallery=$('#gallery > .wrap > ul > li > a');
		el.popGallery=$('#gallerypop');
		el.bPopClose=$('a.close', el.popGallery);
	},
	initEvents:function(){
		var el=this.el;
		
		el.bGallery.unbind('click').bind('click', function(){
			var o=$(this);
			var href=o.attr('href');
			$('.img > img', el.popGallery).attr('src', href);
			el.popGallery.fadeIn();
			return false;
		});
		
		el.bPopClose.unbind('click').bind('click', function(){
			el.popGallery.fadeOut();
			return false;
		});
	},
	init:function(){
		this.initEl();
		this.initEvents();
	}
};
$(function(){
	retro_gallery.init();
});
