/* FILE: 			fmath.jquery.js
 * AUTHOR: 			Eric Paul
 * DATE:			3 December 2009
 * DESCRIPTION:		This file provides after effects and dynamic styling for the math theme
 */

// help us walk the DOM for development
$.fn.tagName = function() {
    return this.get(0).tagName;
}

// get the element after the final '/' in the url
// this will allow us to do manipulations per page
function getFilename() {
	var file_name = document.location.href;
    var end = (file_name.indexOf("?") == -1) ? file_name.length : file_name.indexOf("?");
    return file_name.substring(file_name.lastIndexOf("/")+1, end);
}

$(document).ready(function() {

	

	
});

