$(document).ready(function()
{
	activate_cufon();
});

function activate_cufon() {
	Cufon.set('fontFamily', 'helvetica-condensed').replace('#mainnav li a',{hover: true, letterSpacing: 0});
	Cufon.set('fontFamily', 'helvetica-bold-condensed').replace('h1');
	Cufon.set('fontFamily', 'helvetica-light-condensed').replace('h1.light');
	Cufon.set('fontFamily', 'helvetica-light-condensed').replace('h2').replace('h3').replace('.product-cat-label').replace('.list_item_content_placeholder h2');
	Cufon.now();
}

// basic show and hide
 $(document).ready(function() {
   $('#hide').click( function() {
    $('div.showhide').hide();
   });
   $('#show').click( function() {
    $('div.showhide').show();
   });
   $('#toggle').click( function() {
    $('div.showhide').toggle();
   });

});