﻿   var Orientation = 'in';
	        
	        
	      function slideout()
	      { 
	       if (Orientation == 'in') 
	        {
	          $(".aboutbox").animate({bottom:"0px"},300,"swing");
              $(".abouttab").animate({bottom:"380px"},300,"swing");
              
              Orientation = 'out';
             } else
           {
              $(".aboutbox").animate({bottom:"-381px"},300,"swing");
              $(".abouttab").animate({bottom:"0px"},300,"swing");
             
              Orientation = 'in';
           }
	     
          }
    function goToByScroll(id){
      $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}

 function showreview()
    {
        $("#review").animate({height:"180px"},300,"swing");
    
        //goto that anchor by setting the body scroll top to anchor top
        goToByScroll('review');
      

    }
    
  function showfull()
    {
   
    
        //goto that anchor by setting the body scroll top to anchor top
        goToByScroll('full');
      

    }
       

    
     function showcomments(iheight)
    {
        $("#comments").animate({height:""+iheight},300,"swing");
      goToByScroll('comments');

    }
    
    
    function scrolltop()
    {
    
     goToByScroll('masthead');
     }
     
     
     
      function showdel()
 {
   $(".checkoutbox2").animate({width:"270px"},300,"swing");
 }
 
 function hidedel()
 {
   $(".checkoutbox2").animate({width:"0px"},300,"swing");
 }
 
       function showdelfast()
 {
   $(".checkoutbox2").animate({width:"270px"},0,"swing");
 }
 
 
