// JavaScript Document

$(function(){
	// - - - - - - - - - - - - - - - - Evenly space the grid
	var ch = $('.thumb_holder-list').length;
	if(ch==0){
		var bw = $('#body').width();
		var gw = $('.sm_photoGallery_hldr').outerWidth();
		var los = bw % gw;
		var tc = Math.floor(bw/gw);
		var margin = Math.floor((los/tc)/2);
		$('.sm_photoGallery_hldr').css({margin:margin});
	}
	$('.thumb_holder-hvr').hover(function(){
			$(this).find('.fade').stop().fadeTo(300,1);
		},function(){
			$(this).find('.fade').stop().fadeTo(300,.7);
	});
	// - - - - - - - - - - - - - - - - Correct list widths
	var dw = $('.list').width() - 175;
	$('.list-desc').css('width',dw + 'px');
});
