/*--------------------------------------------------------------------
======================================================================

MARK H. SALTZ PHOTOGRAPHY

Nicholas Scheurich
Parka Design
Baton Rouge, LA 70816
+1 225 686 5211
nick@parkadesign.com
http://parkadesign.com

All rights reserved.

======================================================================
--------------------------------------------------------------------*/

$(document).ready(function() {

if ($('body').attr('class') == 'photos') {
	$('.gallery a').fancybox({
		autoScale: true,
		titleShow: false
	});
}

if ($('body').attr('class') == 'videos') {
	function vimeo(id) {
		var moogaloop = $.flash.create({
			width: 700,
			height: 397,
			swf: 'http://www.vimeo.com/moogaloop.swf',
			flashvars: {
				clip_id: id,
				width: 700,
				height: 397,
				autostart: 1
			}
		});
		return moogaloop;
	}

	var vimeoURL = 'http://www.vimeo.com/api/v2/'
	var vimeoUser = 'user3939804';
	
	function getData(request) {
		return(vimeoURL + vimeoUser + '/' + request + '.json?callback=?');
	}
	
	$.getJSON(getData('videos'), function(data) {
		$.each(data, function(i, item) {
			$('<div />').attr({
				'id': 'vimeo-' + item.id,
				'class': 'vimeo'
			}).html(vimeo(item.id)).appendTo('#videos');
			var a = $('<a/>');
			a.attr('href', '#vimeo-' + item.id);
			a.html('<img src="' + item.thumbnail_large + '" alt="' + item.title + '" />');
			a.fancybox({
				href: '#vimeo-' + item.id,
				titleShow: false
			});
			$('<li />').append(a).appendTo('#content .gallery');
		});
	});
}

/* if ($('body').attr('class') != 'photos') {
	$('#nav li ul').css('display', 'none');
	$('#nav a[href=#]').toggle(
		function() {
			$('#nav li ul').css('display', 'block');
		},
		function() {
			$('#nav li ul').css('display', 'none');
		}
	);
} */

});

$(window).load(function() {

if ($('body').attr('class') == 'photos') {
	$('.gallery').masonry({
		columnWidth: 233,
		singleMode: true
	});
}

if ($('body').attr('class') == 'videos') {
	$('.gallery').masonry({
		columnWidth: 349,
		singleMode: true
	});
}

});
