$(document).ready(function() {
	
	/********************************************************************************************************************
	SIMPLE ACCORDIAN STYLE MENU FUNCTION
	********************************************************************************************************************/	
	$('div.accordionButton').click(function() {
		$('div.accordionContent').slideUp('normal');	
		$(this).next().slideDown('normal');
	});
	
	/********************************************************************************************************************
	CLOSES ALL DIVS ON PAGE LOAD
	********************************************************************************************************************/	
	$("div.accordionContent").hide();
	/********************************************************************************************************************
	SCROLLING DOWNLOAD BUTTON
	********************************************************************************************************************/
	$(window).scroll(function(){
		if  ($(window).scrollTop() > $(".smartBannerIdentifier").offset({ scroll: false }).top){
			$("#dlbtn").css("position", "absolute");
			var offset = $(window).scrollTop() + 150 + "px";
			$("#dlbtn").animate({"top":offset},{duration:500,queue:false});
		}
									
		if  ($(window).scrollTop() <= $(".smartBannerIdentifier").offset({ scroll: false }).top){
			var offset = $(".smartBannerIdentifier").offset({ scroll: false }).top + 25 + "px";
			$("#dlbtn").animate({"top":offset},{duration:500,queue:false});
		}
			
	}); 

});
