// Break out of any frames that may try to wrap this page.
if (top.location != location) top.location.href = document.location.href;

//		Initialize page functions
jQuery(document).ready(function() {
	jQuery('a.active').parent('li').addClass('active');
	
	jQuery("#tabs").tabs();
	
	jQuery("#menu li").hover(
		function () {
			jQuery(this).addClass('hover');
		}, 
		function () {
			jQuery(this).removeClass('hover');
		}
	);
});
