Cufon.replace('h1,h2,h3,h4,h5, ul.nav > li > a', { hover: true });

function cartTracker(ele, stop) {
	var name = $(ele),
		menuYloc,
		offset;
		
	if(stop == undefined) { stop = 1000000; }

	if(name.length > 0) {
		menuYloc = parseInt(name.css("top").substring(0,name.css("top").indexOf("px")));

		$(window).scroll(function () {
			
			offset = menuYloc+$(document).scrollTop()-"100"+"px";
			
			
			if(offset.replace('px','') < stop) {
				name.animate({top:offset},{duration:1000, queue:false});
	
				if ($(document).scrollTop() <= '100') {
					offset = "0";
					name.animate({top:offset},{duration: 1000, queue:false});
				} 
			}
			
		});
	}
}

$(function() {
	 
});
