// JavaScript Document

// LOAD THUMBS
$(window).load(function() {
	
	$('#gallery_loading').addClass('hide');
	$('#gallery_thumbs img')
		.fadeIn(500);
	
});

$(document).ready(function() {
	
	// HOVER THUMBS
	$('#gallery_thumbs img').mouseenter(function(){
		$('#gallery_thumbs img')
			.attr("width","70")
			.attr("height","52")
			.css({"margin" : "5px"});
		$(this)
			.attr("width","80")
			.attr("height","60")
			.css({"margin" : "0px"});
		var src = $(this).attr('src');
		$("#gallery_photos img[src='" + src + "']")
			.fadeIn(500)
				.siblings()
					.fadeOut(500);
		
	});
	
	// RESET THUMBS
	$('#gallery_thumbs').mouseleave(function(){
		$('#gallery_thumbs img')
			.attr("width","70")
			.attr("height","52")
			.css({"margin" : "5px"});
		$("#gallery_photos img[src='images/galleries/banquethall/default.png']")
			.fadeIn(500)
				.siblings()
					.fadeOut(500);
	});
	
});