$(document).ready(function () {
	$('.tab_switch').click(function() {
		$('#main_frame div').css('display','none');
		$('#'+$(this).attr('rel')).css('display','block');
		$('#grey_frame div').removeClass('active');
		$(this).parent().parent().addClass('active');
	});
	
	$("#map").gMap({ 	markers: [{ latitude: 49.283507,
									longitude: -123.116657 }],
						zoom: 15 });
						
	$("div.expand").toggler({method: "fadeToggle"});
	$("div.expand").click(function() {
		if($(this).find('a').hasClass('open')){
			$(this).find('.toggle_btn').html('Hide');
		}else{
			$(this).find('.toggle_btn').html('More');
		}
	});
});
