$(document).bind('ready', function(){
	$('#changeOrder').bind("change", function(){
		window.location.href = $(this).val();
	});
	
	$('a[rel]').lightBox();
});

$(window).load(function(){
	$('.gallery .left img:not(.preview)').each(function(){
		fh = $(this).height();
		fa = (fh-330)/2;
		if(fa<0) fa = fa.positive();
		else fa = '-'+fa;
		$(this).css({ position:'relative', top:fa+'px' });
	});
	
	$('.gallery .left img.preview').each(function(){
		fh = $(this).height();
		fa = (fh-430)/2;
		if(fa<0) fa = fa.positive();
		else fa = '-'+fa;
		$(this).css({ position:'relative', top:fa+'px' });
	});
});

Number.prototype.positive = function(){
	return (this-this)+(this-this-this);
}
