// TRANSITION
(function($) {
$.fn.customFadeIn = function(speed, callback) {
$(this).fadeIn(speed, function() {
if(jQuery.browser.msie)
$(this).get(0).style.removeAttribute('filter');
if(callback != undefined)
callback();
});
};
})(jQuery);
//
$(document).ready(function() {	
$("#page").hide();
$("#page").customFadeIn(400);
$("#menu_1 a,#menu_2 a").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("#page").fadeOut(400, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
