function applyEvents() {
	$("a.find-zip").fancybox({
		'autoScale'     :    false,
		'transitionIn'	:	'none',
		'transitionOut'	:	'none',
		'scrolling'     :   'no',
		'width' 		: 	 352,
		'height' 		: 	 285,
		'overlayShow'	:	 false,
		'href'			:    this.href,
		'type'          :   'iframe'
	});
	$("a.btn-write-review").fancybox({
		'autoScale'     :    false,
		'transitionIn'  :   'none',
		'transitionOut' :   'none',
		'height'        :    500,
		'width' 		: 	 460,
		'href'			:    this.href,
		'type'          :   'iframe'
	});	
	$(".movedate").datepicker();
}

$('document').ready(function() {
	var link;
	var tier1 = window.location.href.split('/')[3];
	tier1 = tier1.replace('.aspx','');
	if (tier1 == 'index') tier1 = ''
	var tier2 = window.location.href.split('/')[4];
	if (tier2 == undefined) tier2 = ''
	tier2 = tier2.replace('.aspx','');
	link = '/' + tier1 + '.aspx'
	if (tier1 == '') link = '/'
	$('#navigation li a').each(function() {
		if ($(this).attr("href") == link){
			$(this).addClass("active");
		}
	});
	if (tier2 != '') {
		link = '/' + tier1 + '/' + tier2 + '.aspx'
		$('#left-column dl dd a').each(function() {
			if($(this).attr("href") == link ){
				$(this).addClass("active");	
			}
		});
	}
	applyEvents();
})

	
