jQuery(document).ready( function ($) {
//--------------------------------------------------
// Author: Chris Lock
// Copyright (c) 2009 V3 Media Group
//--------------------------------------------------

//--------------------------------------------------
// REDIRECT
//--------------------------------------------------
	$('#page').hide();
	
	var currentUrl = document.location.href;
	
	if ( redirectAnchor == '' ) {
		redirectAnchor = currentUrl.replace(baseUrl, '#');
	}
	
	document.location = baseUrl + '/' + redirectAnchor;
});

