

/* animated page scrolling */

$(document).ready(function(){
  $('a.scrollme[href*=#]').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
    && location.hostname == this.hostname) {
      var $target = $(this.hash);
      $target = $target.length && $target
      || $('[name=' + this.hash.slice(1) +']');
      if ($target.length) {
        var targetOffset = $target.offset().top;
        $('html,body')
        .animate({scrollTop: targetOffset}, 1000);
       return false;
      }
    }
  });
});	

   $(document).ready(function(){
							  
			$("#ie_note").append("<div class='ie_txt'><p>It appears you are using  Internet Explorer version 6.0.</p><p>For the best results viewing this website, please upgrade to the latest version of Internet Explorer. <a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx' target='_blank'>Click here to go to upgrade website ></a></p></div><a href='#' id='close' class='png_bg'>Close</a>");
							  
   			$('a').click(function(){
								 
			$('#ie_note').show('slow');
   
   });
   
   $('a#close').click(function(){
   		$('#ie_note').hide('slow');
		})
   
 	  });
   
