// -----------------------------------
// ::::::: Global Javascript :::::::::
// -----------------------------------
// This file contains all of the 
// javascript code that is to be
// included on all visual pages of the
// site.
// -----------------------------------

//Add a bit of code later on that disables submit buttons when clicked.

$(document).ready(function(){
	$('input:submit, input:button, .href_button').button(); //Create Buttons
});


