$(document).ready(function() {

	$('html').addClass('js');

	$('a[rel="external"]').click( function() {
		window.open($(this).attr('href') );
		return false;
	});

	if($('body').is('.contact')) {
		$("form").validate();
	}

	if($('body').is('.apply')) {
		$("form").validate();
	}

	if($('body').hasClass('art') || $('body').hasClass('shop')) 
	{

		$('.gallery a').lightBox({
			fixedNavigation: true,
			imageLoading: '/assets/img/lightbox-ico-loading.gif',
			imageBtnClose: '/assets/img/lightbox-btn-close.gif',
			imageBtnPrev: '/assets/img/lightbox-btn-prev.gif',
			imageBtnNext: '/assets/img/lightbox-btn-next.gif'
		});

		/*var currentTallest = 0,
		currentRowStart = 0,
		rowDivs = new Array(),
		$el,
		topPosition = 0;

		$('.gallery li').each(function() {

			$el = $(this);
			topPostion = $el.position().top;

			if (currentRowStart != topPostion) 
			{

				for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
					rowDivs[currentDiv].height(currentTallest);
				}

				rowDivs.length = 0; // empty the array
				currentRowStart = topPostion;
				currentTallest = $el.height();
				rowDivs.push($el);

			} 
			else 
			{
				rowDivs.push($el);
				currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest);
			}

			for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
				rowDivs[currentDiv].height(currentTallest);
			}

		});*/
	}
});
