/*------------------------------------------------
	*	Adding class to html-tag to hide sections 
		on page load without flickering
--------------------------------------------------*/
document.documentElement.className += " jsLoad";

/*------------------------------------------------
	*	Fire all Functions which need to be 
		executed or initialized if DOM is loaded
--------------------------------------------------*/
// Provides conflicts between jQuery and other libs which uses the '$' function
//jQuery.noConflict();

jQuery(document).ready(function($){
	// code goes here
});
