// JavaScript Document
$(document).ready( function(){
  $(".threefifty.crv a").click(function(){
    var href = $(this).attr("href");
    $("h3"+href ).Highlight("slow","#A1B8E5");
  });
  var faqtop_offset = parseInt( $(".threefifty.crv").offset().top ) - parseInt( $('#chest').offset().top );
  var faqtop = $('.crv').css('top');

  $(window).scroll( function(){

    if( $(document).scrollTop() > 600){
    	if($.browser.msie && $.browser.version.indexOf("6") > -1 ){
			$(".crv").css({position:"absolute", top: ( $(document).scrollTop() - parseInt( $('#chest').offset().top ) )+ 'px' });
		}
		else if($.browser.opera){
			$(".crv").css({position:"fixed", top:"10px", left:"50%", margin:"0 0 0 -473px", float:"none"});
		} else $(".crv").css({position:"fixed", top:"10px", left:"50%", margin:"0 0 0 -473px"});
	}
	else if($.browser.opera){
			$(".crv").css({position:"absolute", top:  faqtop_offset + 'px', left:"50%", margin:"0 0 0 -473px", float:"none"});
	}
    else{
		$(".crv").css({position:"absolute", top:  faqtop_offset + 'px', left:"50%", margin:"0 0 0 -473px"});
	}
  });
});