﻿retro_housetype={
	el:{
		bHouseType:null,
		bPopHouseTypeClose:null
	},
	initEl:function(){
		var el=this.el;
		el.bHouseType=$('#housetype ul li a');
		el.bPopHouseTypeClose=$('.popuphousetype a.closeimg');
	},
	initEvents:function(){
		var el=this.el;
		
		el.bHouseType.unbind('click').bind('click', function(){
			var o=$(this);
			$(o.attr('href')).fadeIn();
			return false;
		});
		
		el.bPopHouseTypeClose.unbind('click').bind('click', function(){
			$('.popuphousetype').fadeOut();
			return false;
		});
	},
	init:function(){
		this.initEl();
		this.initEvents();
	}
};
$(function(){
	retro_housetype.init();
});
