$(document).ready(
	function(){
		$(".gallery-icon a").lightBox();

		$("#resizable").resizable({
			maxHeight: 600,
			maxWidth: 997,
			minHeight: 355,
			minWidth: 997
		});

		$(".ui-resizable-s").hover(function() {
			$("#resizable-zoom img").stop(true, false).animate({opacity: "show"}, "fast");
			}, function() {
			$("#resizable-zoom img").animate({opacity: "hide"}, "fast");
			});




});


		


