// JQUERY FUNCTION

jQuery(document).ready(function($){
																
	$("#container").height('100%');									

	$(".mainContent h1:eq(0)").css({ marginTop:"0" });

	// TARGET BLANK XHTML STRICT
	$('a[@rel$="external"]').click(function(){
	
		this.target = "_blank";
	
	});
	
	$('#footer').IEPNGHack();

	
});