$(document).ready(function() {
	$("a.zoom_portfolio").fancybox({
		'hideOnContentClick': false,
           'centerOnScroll' : false,
            'frameWidth'	:	860,
            'frameHeight'	:	590
	});
	
	// Replace portfolio items with new image from
	$("a.portfolio_landscape_thumb").click(function() {
		var href = $(this).attr("href");
		$("#iphoneScreenshotPortrait").attr("id", "iphoneScreenshotLandscape");
		$("#iphoneHolderPortrait").attr("id", "iphoneHolderLandscape");
		$("#iphoneScreenshotLandscape").css("background-image", "url("+href+")");
		return false;
	});
	
	$("a.portfolio_portrait_thumb").click(function() {
		var href = $(this).attr("href");
		$("#iphoneScreenshotLandscape").attr("id", "iphoneScreenshotPortrait");
		$("#iphoneHolderLandscape").attr("id", "iphoneHolderPortrait");
		$("#iphoneScreenshotPortrait").css("background-image", "url("+href+")");
		return false;
	});	
	
});