jQuery(document).ready(function() {
						   
	jQuery(function() {
		jQuery('ul#navbar a, .btnUp a, .btnDown a, a.serviceLink').bind('click',function(event){
			var jQueryanchor = jQuery(this);
			
			jQuery('html, body').stop().animate({
				scrollTop: jQuery(jQueryanchor.attr('href')).offset().top
			}, 1500,'easeInOutExpo');
			/*
			if you don't want to use the easing effects:
			jQuery('html, body').stop().animate({
				scrollTop: jQuery(jQueryanchor.attr('href')).offset().top
			}, 1000);
			*/
			event.preventDefault();
		});
	});

	//ACCORDION BUTTON ACTION	
	jQuery('div.accordionButton').click(function() {
		jQuery('div.accordionContent').slideUp('normal');	
		jQuery(this).next().slideDown('normal');
	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	jQuery("div.accordionContent").hide();

});
