$(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 ($.browser.msie && $.browser.version.substr(0,1)<7) {
  // search for selectors you want to add hover behavior to
  			if  ($(window).scrollTop() > $(".smartBannerIdentifier").offset({ scroll: false }).top){
			   $("#dlbtn").css("position", "absolute");
			   $("#dlbtn").css("top", $(window).scrollTop() + 25 + "px");
			}
} else {
			if  ($(window).scrollTop() > $(".smartBannerIdentifier").offset({ scroll: false }).top){
			   $("#dlbtn").css("position", "fixed");
			   $("#dlbtn").css("top", "25px");
			}
}
			
			if  ($(window).scrollTop() <= $(".smartBannerIdentifier").offset({ scroll: false }).top){
			   $("#dlbtn").css("position", "static");
			   $("#dlbtn").css("top", "0");
			}
		}); 

});
