// Gallery Hide from Flash...
function winGalleryHide () {
	$(".win_gallery").fadeOut(500);
	$("#body_off").slideUp("slow");
};
// JQuery
$(document).ready(function(){
	// DEFAULT
	// Window Resize...
	$(window).resize(function(){
			/*var t = $(window).height()/2-250+$(document).scrollTop()-165; 
			$(".win_gallery").animate({top: t}, 300);*/
			$("#body_off").css({'width': $(window).width()});
			$("#body_off").css({'height': $(document).height()});
	});
	// Win Close
	$(".win .close").click(
		function() {
			$(this).parent().parent(".win").fadeOut(500);
			return false;
		}
	);
	// RV GALLERY
	$(".df_link_gallery").click(
	  function () { 
		var t = $(this).position(); 
		$(".win_gallery").css({'top' : t.top-800 });
		$(".win_gallery").fadeIn(500);
		$("#body_off").slideDown("slow");
		return false;
	});	
});
		
		