
(function($){

	$(document).ready(function(){

		$('#main div.photo')
			// title click.
			.find('h2 a')
				.click(function(){
					$(this).closest('div.item').find('a[rel=view]').trigger('click');
					return false;
				})
			.end()

			// show party scene.
			.find('a[rel=view]')
				.colorbox({
					iframe: true,
					width: 640,
					height: 553,
					opacity: 0.6
				},
				// load completed.
				function(){
					// for ie...
					if ($.browser.msie) {
						var iframe = $('#cboxIframe').get(0);
						if (iframe.readyState !== 'complete') {
							// wait for ready.
							setTimeout(arguments.callee, 100);
							return;
						}

						// fire scroll event (to show overlay)...
						window.scrollBy(0, 1);
						window.scrollBy(0, -1);

						setIframeClose(iframe.contentWindow.document);
					}
					// other browser.
					else {
						$('#cboxIframe')
							.bind('load.colorbox', function(){
								setIframeClose(this.contentWindow.document);
							})
							.trigger('load.colorbox')
						;
					}
				})
			.end()

			// navigate to hole.
			.find('p.more a')
				.click(function(){
					window.open(this.href, '_blank');
					return false;
				})
			.end()
		;
	});

	function setIframeClose(context)
	{
		$('p.close a', context).bind('click.close', function(){
			$(this).unbind('click.close');
			$.fn.colorbox.close();
			return false;
		});
	}

})(jQuery);
