$jQ(function(){

	// Flyout
	$jQ('ul.all_products li ul.sub li').hover(function(){
		$jQ(this).children('ul').show();
	}, function(){
		$jQ(this).children('ul').hide();
	});

	// Cleanup unwanted anchors
	$jQ('ul.all_products li a:not(ul.sub li a)').removeAttr("href");
	$jQ('ul.all_products li ul.sub li ul.sub li').parent('ul.sub').parent('li').children('a').removeAttr("href");


	$jQ("div.productItem:nth-child(3n)").addClass('noright');
	
	i = 1
    $jQ('.productItem').each(function(j){
    	i = i + 1;
    	if (i == 3) {
    		$(this).addClass('noright'); 
    		i = 0;
    	}
	});

	// Cleanup Mozilla hidden inuts
	$jQ("input[type='hidden']").hide();


});


