	Cufon.replace('.styled', { fontFamily: 'movies-regular' });
	Cufon.replace('.black', { fontFamily: 'movies-black' });
	Cufon.replace('#wp-calendar caption', { fontFamily: 'movies-regular' });
	
	var isInIframe = (window.location != window.parent.location) ? true : false;
	
	function equalHeight(group) {
		   tallest = 0;
		   group.each(function() {
		      thisHeight = $(this).height();
		      if(thisHeight > tallest) {
		         tallest = thisHeight;
		      }
		   });
		   group.height(tallest);
		}
		$(document).ready(function() {
		
		if(!isInIframe) {
			equalHeight($(".Tall"));
		}
		});
