$(function() {
	
	// linkscrubber 
	$("a").bind("focus",function(){if(this.blur)this.blur();});
	$("input[type='image']").bind("focus",function(){if(this.blur)this.blur();});
	
	
	// z-index fix
	var zIndexNumber = 1000;
	jQuery('#content div').each(function() {
		jQuery(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 1;
	});
	
	
	// topnav dropdown
	$('.dnav_foodwine, .dnav_promos, .dnav_better, .dnav_orders').hover(function(){
		$nav = $(this).attr('class');
		$('#'+$nav).show();
	}, function(){
		$('#'+$nav).hide();
	});
	$('#dnav_foodwine, #dnav_promos, #dnav_better, #dnav_orders').hover(function(){
		$(this).show();
		$nav = $(this).attr('id');
		$('.'+$nav+' a').addClass('hover');
	}, function(){
		$(this).hide();
		$('.'+$nav+' a').removeClass('hover');
	});
	$('#dnav_foodwine, #dnav_promos, #dnav_better, #dnav_orders').hide();
	
	
	// topnav minwidth fix (IE6)
	$(".dropnav").each( function () {
		$colcount = $('.dnav_col', this).size();
		$(this).addClass('colcount'+$colcount);
	});
	
});


// submit form
function submitform() {
  document.myform.submit();
}




