// JavaScript Document
//Scroll To Januvia Important Info
function scrollToImpInfo(id,offset){	
	if(isIE6){	
		var elemLocation = $('#'+id).offset().top+offset+50; //IE6 Needs a different Offset +50 pixels
		$('#contain-all').animate({scrollTop:elemLocation},'slow');
	} else {
		var elemLocation = $('#'+id).offset().top+offset;
		$('html,body').animate({scrollTop:elemLocation},'slow');
	}
}

//Back To Top
function backToTop(){
	var id = $('#header-logo-padding');
	if(isIE6){	
		var elemLocation = $(id).offset().top;
		$('#contain-all').animate({scrollTop:elemLocation},'slow');
	} else {
		var elemLocation = $(id).offset().top;
		$('html,body').animate({scrollTop:elemLocation},'slow');
	}
	
}
//Toggle Floating Footer
function toggleFloatingFooter(){
		
	if($('#floating-footer').is(':visible')) {
		$("#floating-footer").hide();
		$("#onScreenDetect").css("margin-top","0px");
	}
	if(!$('#bttTrigger').is(':visible')) {
		$("#bttTrigger").show();
	}
}

function vanish(){
		var van = document.getElementById('floating-footer');
		van.style.display = 'none';		
		$("#onScreenDetect").css("margin-top","0px");
		}
