jQuery(document).ready(function() {

	var Engine = {
		
		tweaks : {
			
			sideNavHandle : function(){
				
				// handle side nav
				jQuery("#nav_870573").attr("id","menu");
				
				var html = jQuery("#item-motor").find("a").html();
				
				jQuery("#item-motor").find("a").html(html+"<img width=\"14\" height=\"14\" src=\"/Includes/Templates/Active/images/bg-feature.gif\" alt=\"i\" class=\"featureIcon\" />");
				
				jQuery("#item-motor").find("a").attr("id","motor");
				
				jQuery("#item-newsletter").find("a").attr("id","newsletter");
				
				html = jQuery("#item-newsletter").find("a").html();
				
				jQuery("#item-newsletter").find("a").html(html+"<img width=\"14\" height=\"14\" src=\"/Includes/Templates/Active/images/bg-feature.gif\" alt=\"i\" class=\"featureIcon\" />");	
				
				} // sideNavHandle
			
		}// end tweaks
		
	}// end Engine
	
	Engine.tweaks.sideNavHandle();



});