// Homepage Javascrpt Behaviours


// Adds the .active class to current page
$(function(){
	var path = location.pathname.substring(1);
	if ( path )
		$('#header ul a[href$="' + path + '"]').attr('class', 'active');
});
	
	


