// JavaScript Document
$(document).ready(function(){
	galleryAction();
});

function galleryAction() {
	if ($('.gallery').length) {
		$('.content .left_col').html('<img src="" id="galleryImage" />');
		$('#galleryImage').load(onImageLoaded);
		$('.gallery a').click(function() {
			$('.gallery a').removeClass('selected');
			$(this).addClass('selected');
			$('#galleryImage').attr('src', $(this).attr('href'));
			return false
		});
		$($('.gallery a')[0]).trigger('click');
	}
}
function onImageLoaded() {
	$(this).stop().clearQueue().hide().fadeIn().queue(function() {$(this).css('opactity', 1)});
}



