jQuery.noConflict();

jQuery().ready(function() {
	jQuery("#espndb-logo").click(function() {
		//jQuery("#header-wrap").css("background-position", "0px -85px");
		result = jQuery('#header-wrap').css("background-position").split(" ");
		top = result[1];
		if (top[top.length-1]=='%') { top = -85 } else { result = top.split("p"); top = result[0]-85; if (top<-595) { top=0; } }
		jQuery('#header-wrap').css({backgroundPosition:'0px '+top+'px'});
	});
});
