var Site = window.Site || {};
(function($) {
	$(function() {

	// horizontal format
		
		$('li.horizontal img').load (function() {
			var galleryElement = $('li.horizontal');
			var padding = $('li.horizontal').length * 5;
			var boxWidth = 0;
			for ( var i = 0; i < galleryElement.length; i++ )
				{
					boxWidth += parseInt(galleryElement[i].offsetWidth);
				}
			$('#horizontal-box').width(boxWidth + padding);
		});
				
	// slideshow format
		
		$('#slideshow-box').cycle({
			fx:'fade', 
			speed:'2000', 
			timeout: 0, 
			next:'#next', 
			prev:'#prev'
		});
		
	// placeholder

		$('input, textarea').placeholder();
	
	//END
		
	});

	$(window).bind("load", function() {
		
	});
})(jQuery);
