$(function(){
	// Bind a hover event to the menu items
	// 1. Add a class
	// 2. Get the width of the website/menu
	$('item_level_0').hover(function(){
		$(this).addClass('iehover');
	}, function(){
		$(this).removeClass('iehover');
	})

	var imageObject = $('.category_desc img');
	// Add css classes 
	//$('.category_desc img[align="left"]').addClass('alignLeft');
	//$('.category_desc img[align="right"]').addClass('alignRight');
	//$('ul.menu_level_1 li:last-child').addClass('no-border');	
});
