﻿//For options, go to http://users.tpg.com.au/j_birch/plugins/superfish/#options
(function(j$) {
	j$(document).ready(function() {
		j$('.main-nav ul.L1').superfish({
			delay: 200,                            // one second delay on mouseout 
			animation: { opacity: 'show' },  // fade-in and slide-down animation 
			speed: 'fast',                          // faster animation speed 
			autoArrows: false,
			dropShadows: false
		});
		
		j$('.contactTb tr').click(function() {
		    var subject = $(this).find(".subjectCell").html();   
            if(subject) {
                window.location = "/about-us/contactus.aspx?sub=" + subject;
            }
        });

        j$(".contactTb tr").hover(
            function()
            {
                $(this).addClass("highlight");
            },
            function()
            {
                $(this).removeClass("highlight");
            }
        );
		
	}); 
	
})(jQuery);
