Cufon.replace('.PhoneContainer p', {textShadow: '1px 1px rgba(40, 34, 34, 1)'});
Cufon.replace('.TimeLeft p', {color: '-linear-gradient(#da0000,0.44=#c60000,0.46=#b20000,0.7=#9e0000)'});
Cufon.replace('.TimeLeft h3', {color: '-linear-gradient(#da0000,0.44=#c60000,0.46=#b20000,0.7=#9e0000)'});
Cufon.replace('.TimeLeft h4', {color: '-linear-gradient(#ff6d00,0.44=#e23e00,0.46=#d82f00,0.7=#c31000)'});
Cufon.replace('.TimeLeft h2', {color: '-linear-gradient(#ff6d00,0.44=#e23e00,0.46=#d82f00,0.7=#c31000)'});
Cufon.replace('.ProductOfTheDayBottom h3', {textShadow: '-1px -1px rgba(123, 12, 41, 1)'});
Cufon.replace('.ProductOfTheDayBottom a', {textShadow: '-1px -1px rgba(77, 54, 0, 1)'});
Cufon.replace('.CatalogTopContainer h3', {textShadow: '-1px -1px rgba(65, 64, 64, 1)'});
Cufon.replace('.GreyLinkBack  a', {textShadow: '1px 1px rgba(255, 255, 255, 1)'});
Cufon.replace('.TagsTopContainer h3', {textShadow: '-1px -1px rgba(65, 64, 64, 1)'});
Cufon.replace('.BlackLinkBack a', {textShadow: '1px 1px rgba(77, 54, 0, 1)'});
Cufon.replace('.StoresAddress h3', {textShadow: '-2px -1px rgba(89, 85, 84, 1)'});
/*Cufon.replace('.MenuContainer li td a', {textShadow: '-2px -2px rgba(68, 59, 59, 1)', hover: 'true' 	
});*/



jQuery(document).ready(function(){

jQuery(".niceCheck").mousedown(
function() {

     changeCheck(jQuery(this));
     
});
jQuery(".niceCheck").each(
function() {
     
     changeCheckStart(jQuery(this));
});

                                        });

function changeCheck(el)
{
     var el = el,
          input = el.find("input").eq(0);
   	 if(!input.attr("checked")) {
		el.css("background-position","0 13px");	
		input.attr("checked", true)
	} else {
		el.css("background-position","0 0");	
		input.attr("checked", false)
	}
     return true;
}

function changeCheckStart(el)
{
var el = el,
		input = el.find("input").eq(0);
      if(input.attr("checked")) {
		el.css("background-position","0 13px");	
		}
     return true;
}
