jQuery(document).ready(function()
{
	$('a.targetBlank').click(function() {
        window.open(this.href);
		return false;
	});
	
	$('.detail_link').fancybox({
		'titleShow'		: false,
		'scrolling'		: 'no'
	});
	
	
	var heightWindow	= $(window).height() + $(window).scrollTop();
	var heightDocument	= $(document).height()
	var height = heightWindow;
	
	if (heightDocument>heightWindow )
	{
		height = heightDocument;
	}
	
	var newTop = height - 62;

	$('#footer').css('top', newTop+'px');
	
	window.onresize = function(){
		var heightWindow	= $(window).height() + $(window).scrollTop();
		var heightDocument	= $(document).height()
		var height = heightWindow;

		if (heightDocument>heightWindow )
		{
			height = heightDocument;
		}

		var newTop = height - 62;

		$('#footer').css('top', newTop+'px');
	}
	
});
