/**
 * @author adam
 */

$(document).ready(function() {
	
	$('a.fancybox').children('img').css({
		'border'   : 'solid 2px #ffffff'
	});
	
	$("a.fancybox").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'overlayOpacity'        : 0.7
	}).hover(function() {
		$(this).prepend('<span class="ui-icon ui-icon-newwin" style="float:left;position:absolute;top:0px;right:0px;" id="enlarge>enlarge</span>');
		$(this).children('img').css({
			'border'  : 'solid 2px #919191'
		});
	}, function() {
		$('#enlarge').remove();
		$(this).children('img').css({
			'border'  : 'solid 2px #ffffff'
		});
	});

	$('select[name=category]').change(function() {
		var theVal = $(this).val();
		
		$('table.show').hide().addClass("hide");
		$('#loading_the').html("Loading the "+theVal+" gallery");
		$('.load').show();
		
		$.ajax({
			url  : "includes/gallery.ajax.php",
			data : "theVal="+theVal,
			type : "POST",
			success : function() {
				setTimeout(function() {
					$('table#'+theVal).fadeIn(1000).removeClass("hide").addClass("show");
					$('.load').hide();
				}, 1000);
			}
		});
	});

});
