$(document).ready(function() {
	$("a.project_image").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false });
	
	if (getCurrentPage()) {
		scroll_to(getCurrentPage());
	}
});

function scroll_to(element_name) {
    $.scrollTo($("a."+element_name), {
        duration: 0
    });
}

function getCurrentPage () {
    var url = document.location.toString();
    if (url.match('#')) {
     return url.split('#')[1].toString();
    }
    else
    {
        return false;
    }
}
