﻿$(function () {
	

    $("#divFooter .menuLeft ul li,#divFooter .menuRight ul li").hoverIntent(
        function () {
            $(".divSubMenu", this).show();
        },
        function () {
            $(".divSubMenu", this).hide();
        }
    );
    
   
    
	$("input:checked").parent().addClass("selected");

	$("a.opt").click(function(e){
		e.preventDefault();
		$(this).parent().parent().find("a.opt").each(function(idx,elem){
			$(elem).removeClass("selected");
		});
		$(this).addClass("selected");
	});	
	
	
	$("ul.breadCrumb li:first").css("backgroundImage","none");

});
