/*
	cbs-tmenu JS: Displays and holds the top menu
	Copyright (C)2011 Mike Smith
	Allows the co-existance of jQuery with the standard Mootools Library
*/
function sticky_relocate(){var a=jQuery(window).scrollTop();var b=jQuery("#menu-anchor").offset().top;if(a>b)jQuery(".menu-holder").addClass("sticky");else jQuery(".menu-holder").removeClass("sticky")}jQuery.noConflict();jQuery(function(){jQuery(window).scroll(sticky_relocate);sticky_relocate()})
