$(document).ready(function() {
   
	//jQuery.easing.def = "string";
   
    $('a[href*=#]').click(function() {
		
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
		
			var $target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			
			if ($target.length) {
			
				var targetOffset = $target.offset().top;
				$('html,body').animate({scrollTop: targetOffset}, 1000, 'expoinout');
				return false;
				
			}
		}
	});
	
	//Activate FancyBox
	$("div#prezentare a").fancybox({
		'hideOnContentClick': true
	});
	$("div#subsol a").fancybox({
		'hideOnContentClick': true
	});
	$("div#parter a").fancybox({
		'hideOnContentClick': true
	});
	$("div#etaj1 a").fancybox({
		'hideOnContentClick': true
	});
	$("div#etaj2 a").fancybox({
		'hideOnContentClick': true
	});
	$("div#mansarda a").fancybox({
		'hideOnContentClick': true
	});
	
	/*
	// shadowbox showcase
	var options = {
		loadingImage: 'img/loading.gif',
        resizeLgImages:     true,
        displayNav:         true,
        handleUnsupported:  'remove',
        keysClose:          ['c', 27], // c or esc
		text: {
			of: 'din',
			loading: 'Incarcare',
			cancel: 'Anuleaza',
			close: 'Inchide',
			next: 'Urmatoarea',
			prev: 'Precedenta'
		}
    };
	
	Shadowbox.init(options);
	
	*/
	
});


