$(document).ready(function(){
	var boxy_is_opened = false;
	
	$(".fancybox-link").click(function(){
			if (!boxy_is_opened) {
				foo = $.achtung({message: 'V&#259; rug&#259;m s&#259; astepta&#355;i...', timeout: 0});
				var id = $(this).attr('rel');
				var special_offer_title = $(this).attr('name');
				new Boxy.load("detail-page.php?id=" + id,{
					title:	special_offer_title,
					modal: true,
					fixed: false,
					closeText: "[x]",
					unloadOnHide: true,
					afterShow: function() {
						boxy_is_opened = true;
              			foo.achtung('close');
						var box = Boxy.get($("#detali-box-h1"));
						
						var detali_topside_height = 325;
						var detali_div_height = $("#detalii-detalii-div").height();
						var window_height = $(window).height();
						var total_content = detali_topside_height + detali_div_height;
						var total_content_min_height = 466;
												
						if ( total_content > (window_height-100) ) {
							var new_detali_height = ((window_height-100-detali_topside_height)<80)?80:window_height-100-detali_topside_height;
							$('#detalii-detalii-div').css('height', new_detali_height);
							$('#detalii-detalii-div').css('overflow', 'auto');
							$('#detalii-detalii-div').css('overflow-x', 'hidden');
							box.center();
						}
						
						//alert(window_height + "<>" + total_content + "<>" + new_detali_height);
						
              		},
              		beforeUnload: function() {
              			boxy_is_opened = false;
              		}
            	});
			}
		});
});
