$(function()
{
	$('body').click(function(e)
	{
		var $target = $(e.target);
		if($target.parents('.dropdownItem.shown').size() == 0 && !$target.hasClass('dropdown-trigger'))
			$('.dropdownItem').removeClass('shown');
	});

	/*ie6 showing hiding select box on cart click*/
	$('a.shoppingcart.dropdown-trigger').click(function(){
		if ( $('#shoppingcartDropdown').hasClass("shown") ) {
			//document.body.className +=' hideSelects';
			document.body.className = document.body.className.replace(' hideSelects', '');
		} else {
			//document.body.className = document.body.className.replace(' hideSelects', '');
			document.body.className +=' hideSelects';
		}
	});
	

});
