﻿projectzone={
	el:{
		bLocation:null,
		popImg:null, bPopClose:null,
		bulletZone:null
	},
	initEl:function(){
		var el=this.el;
		el.bLocation=$('.mapthumb > a');
		el.popImg=$('.imagefullpop');
		el.bPopClose=$('.close', el.popImg);
		el.bulletZone=$('#imgprojectzine > ul > li');
	},
	initEvents:function(){
		var el=this.el;
		el.bLocation.unbind('click').bind('click', function(){
			el.popImg.fadeIn();
		});
		el.bPopClose.unbind('click').bind('click', function(){
			el.popImg.fadeOut();
		});
		
		el.bulletZone.unbind('click').bind('click', function(){
			var o=$(this);
			// hide all span
			$('span', el.bulletZone).hide();
			$('span', o).show();
		});
	},
	init:function(){
		this.initEl();
		this.initEvents();
	}
};
$(function(){
	projectzone.init();
});
