$(document).ready(function(){
	// fix ie png
	DD_belatedPNG.fix('img');
	DD_belatedPNG.fix('#CommunitiesLogos div');
	
	// pop up windows
	$('a#ShareLink').open({
		width: 430,
		height: 685,
		top: 150,
		left: 200
	});
	$('a#PrivacyLink').open({
		width: 430,
		height: 600,
		top: 150,
		left: 200
	});
	$('a#TermsLink').open({
		width: 430,
		height: 700,
		top: 150,
		left: 200
	});
	
	// open external links in new window
	$('a[href ^= "http://"]').attr('target','_blank');
	
	// highlight active link
	$.fn.highlightLink = function(){
		$(this).css('border-top','3px solid #ED1C2E');
	};
	
	
	$(window).bind("resize", resizeWindow);
	
	function resizeWindow() {
		$('#BackgroundImage').css({'width':'100%','height':'100%'});
	};

});