function show_ingred() {
  
  $('#ingred_hide').slideToggle();
  $('#ingred_switch').fadeOut();
  
}

function scroll_voucher() {
 


 $(voucherQ).animate({width: "0px"}, { queue:true, duration:400 }).delay(400);
 $(voucherBlock).height("35px");
 $(voucherBlock).animate({width: "450px"}, { queue:true, duration:400 });

}


function show_pro_sugg() {

  
  $(sugghide).animate({height: "750px"}, { queue:true, duration:400 });
  $(suggswitch).fadeOut();

}

function scrollNews(startpoint) {
 
   // find out which checkboxes are checked, their values are the tags.



        //Run through the taglist div and collected the checked ones, add their values together for the SQL.
           window.scrollTo(0, 0);

          $('#home_news').animate({ opacity: '0' }, 500, function() {
   
                        dataString = "start="+startpoint;
          
                        $.ajax({
                    type: "POST",
                    url: "../home.v2.news.php",
                    data: dataString,
                    success: function(niceresponse) {
          
                       $('#home_news').html(niceresponse);

                        $('#home_news').animate({ opacity: '1' }, 500 );
                        

                
                    }
                  });
   

              });

          // send to PHP script

        return false;



}

function makePretty() {
  
  $('#tabcornerHome').corner('top');
            $('#tabcornerHair').corner('top');
            $('#tabcornerMakeup').corner('top');
            $('#tabcornerApp').corner('top');
            $('#tabcornerDress').corner('top');
            $('#tabcornerTips').corner('top');
            $('#tabcornerFun').corner('top');
            $('#tabcornerAbout').corner('top');
            $('#tabcornerBasket').corner('top');
            
            $('#header_search_box').corner('');
            
                   
                   $('.section_purple').corner('top');
                   $('.section_purple_simple').corner('');
                   $('.section_dpurple').corner('bottom');
                   $('.section_pink').corner('');
                   $('.section_grey').corner('');
                   $('.section_red').corner('');
                   $('.item_details').corner('bottom');
                   
                                   
                   
}



               

