// NOTE
//	This is the main Javascript file for the 
//	"SWR - Smart Sustainable Wast Management" website
//  All scripts here use JQuery
	
// ========================================================================*/

jQuery.noConflict();

jQuery(document).ready(function(){
	
// ========= SCRIPTS FOR ALL PAGES ===========

	// ADD HOVER TO TOP NAVIGATION LIST (FOR IE)
	jQuery('#topNavigation ul li').hover(function() {
		jQuery(this).addClass('hover');
			}, function() {
		jQuery(this).removeClass('hover');
	});
	
// ========= SCRIPTS FOR SPECIFIC PAGES ===========	
		
});