function resizeHandler()
{
	
	if( window.innerWidth < 880 )
	{
		$("#wrapper").css( { 'left': '20px', 'margin-left': '0' } ); 
	} else {
		$("#wrapper").css( { 'left': '50%', 'margin-left': '-440px' } ); 
	}
	
}


$(document).ready(function() {
	
	
	$("#rsvp").attr({"href":"mailto:rsvp@dressreform.com"});
	$(window).resize( resizeHandler );
    resizeHandler();
	
	$(".collection").find("a").each(function(i) { 	 
		$(this).fancybox({});
	});

	$("#press .main").find("a").each(function(i){ 	 	
		$(this).attr("target", "_blank")
	}); 
});
