function newWindow() {
	$(document).find('a[rel="newWindow"]').click(function(){
		window.open(this.href);
		return false;
	})
}


// onload
$(document).ready( function() {
	newWindow();
	
	$('#more-info').click(function(){
		var newheight;
		var removeCorner;
		
		if($(this).is('.active')){
			
					$(this).removeClass('active');
					
					removeCorner = true;
					newheight = 359;
		}
		else{		
			$(this).addClass('active');
			$('#featured').addClass('expanded');
			removeCorner = false;
			newheight = 626;
		}
		
	
			$('#featured').animate({
			    height: newheight+'px'
			  }, 500, function() {
				if(removeCorner)
					$('#featured').removeClass('expanded');
			    // Animation complete.
			  });
			
	})
	
});




