jQuery(document).ready(function() {
	var sfEls = document.getElementById("mainnav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
	jQuery("#headphonesc>dd:contains('Mic'd')").addClass('shortitems');
	jQuery("#collectionsc>dd:contains('Vibe')").addClass('shortitems');
	jQuery("#earphonesc>dd:contains('Ruckus Reduction')").addClass('longitems');
	jQuery("#earphonesc>dd:contains('Sport Buds')").addClass('longitems');
	jQuery("#otherprodsc>dd:contains('Parts & Accessories')").addClass('longitems');
	jQuery("#otherprodsc>dd:contains('Clothing & Apparel')").addClass('longitems');
	jQuery(".music dd:contains('The Crystal Method')").addClass('longitems');
	jQuery(".music dd:contains('Homosapian')").addClass('longitems');
	jQuery(".support dd:contains('FAQ')").addClass('shortitems');
	jQuery(".support dd:contains('User Forum')").addClass('shortitems');
	jQuery(".support dd:contains('International Support')").addClass('longitems');
});