$().ready(function(){
	$("input.label").focus(function(){
		if ($(this).attr('rel') == $(this).val()) {
			$(this).val('');
		}
	});
	$("input.label").blur(function(){
		if ($(this).val() == '') {
			$(this).val($(this).attr('rel'));
		}
	});
	$('.confirm').click(function(){return confirm($(this).attr('rel'))})
	$('.focusnow').focus();
	$('a[rel*=target-blank]').click(function(){
		window.open(this.href);
		return false;
	});
	
	$('#btn-view-longer-footer').click(function() {
		$('#additional-footer').slideToggle('fast', function(){
			$("html, body").animate({ scrollTop: $(document).height()-$(window).height() });
		});
		$(this).toggleClass('active');
		
		return false;
	});
})
