			$(document).ready(function(){
			//TOGGLE Function
				//Hide (Collapse) the toggle containers on load
				$(".toggle_container").hide(); 
 
				//Switch the "Open" and "Close" state per click
				$("h2.trigger").toggle(function(){
					$(this).addClass("active");
					}, function () {
					$(this).removeClass("active");
				});
 
				//Slide up and down on click
				$("h2.trigger").click(function(){
					$(this).next(".toggle_container").slideToggle("slow");
				});
				
				//Smooth Scroll Function 
				
				
				$.localScroll({
					hash: false
				});
				
				//ToolTips
				
				$('a[title]').qtip({
				position: {
					corner: {target: 'topMiddle', tooltip: 'bottomMiddle'}
					},
					style: { 
						name: 'cream', 
						tip: true,
						border: {
						width: 5,
						radius: 8
						}
					}
					
				});
				
				
 
			});