﻿/*
===============================================
Florio Fashion. February, 2011.
http://www.florio-fashion.com
===============================================
*/

$(document).ready(function () {
	$(window).bind("hashchange", function () {
		if (window.location.hash == "#info") {
			fadeOut($("#index"), 300);
			fadeIn($("#info"), 300);
		} else {
			$("#index").show();
			$("#info").hide();
		}
	});
	$(window).trigger("hashchange");
});

/*
===============================================
HELPER
===============================================
*/

function fadeIn(jObject, duration) { if ($.browser.msie) { jObject.show(); } else { jObject.fadeIn(duration); } }
function fadeOut(jObject, duration) { if ($.browser.msie) { jObject.hide(); } else { jObject.fadeOut(duration); } }
