$(document).ready(function(){
	$('#galcontent').html('<img id="galimg" src="'+$('#galnav li:nth-child(1)').find('a').attr('href')+'" alt="ScriptByTheUsual" />');
	
	$('#galnav li a').each(function(){
		$(this).css({
			'margin': '3px'
		});
		$(this).find('img').css({
			'width': '84px',
			'height': '84px'
		});
	});
	
	$('#galnav li a').hover(function(){
		$(this).animate({
			margin: '0px'
		});
		$(this).find('img').animate({
			'width': '90px',
			'height': '90px'
		});
	},function(){
		$(this).animate({
			margin: '3px'
		});
		$(this).find('img').animate({
			'width': '84px',
			'height': '84px'
		});
	})
	
	$('#galnav li a').click(function(){
		var clipBoard = $(this).attr('href');
		$('#galimg').fadeOut(function(){
			$('#galimg').remove();
			$('#galcontent').append('<img id="galimg" src="'+clipBoard+'" alt="ScriptByTheUsual" />');
			$('#galimg').hide();
			$('#galimg').fadeIn();
			$('img[src="images/layout/tU_loader.gif"]').fadeOut().remove();
		});
		$('#galcontent').append('<img src="images/layout/tU_loader.gif" alt="loading..." style="position: absolute; top: 0; left: 0;" />');
		
		return false;
	})
	
})
