﻿/*  -------------------------------------------------------------------
    Toggle Content ---------------------------------------------------- */
    
		$(function(){
            $("a.toggle_subitems", "ul.new_submenu").bind("click", function(){
            
                $(this).siblings("ul").toggle();
                $(this).toggle(function(){
                    //alert('open');
                },function(){
                    //$(this).removeClass('closed');
                    //alert('close');
                });
              });
                

                  /*  var target = this.id
                    
                    if (target == "montreal"){
                        alert(target);
                        $(this).html('<img src="images/sm_montreal_s.gif" id="montreal_s" />');
                         var target = "montreal_s"
                    }
                    
                    if (target == "montreal_s"){
                        alert(target);
                       $(this).html('<img src="images/sm_montreal.gif" id="montreal" />');
                        var target = "montreal"
                    }
                    
                     
                    if (target == "toronto"){
                       $(this).html('<img src="images/sm_toronto_s.gif" id="toronto_s" />');
                    }*/
        });
    




