// Welcome to your jquery.base file ... place awesome jquery stuff here to help spruce up / fix / whatever your site. A link to this file has already been placed in each masterpage
jQuery(function() {
	// IE lte 6-specific
	/*if($.browser.msie && $.browser.version<7) {
		// stuff here
	};*/
	
	// add first and last classes to various elements
	jQuery(".subnavblock, .footlinksblock").each( function() {
		jQuery(this).children("li:last").addClass("last");
		jQuery(this).children("li:first").addClass("first");
	});
/*
	$("#topnav li.rounded").hover(
      function () {
       $(this).css("background", "url(/siteassets/images/bg/nav_li_bg.gif) repeat-x");
       $(this).children('a').css('color' ,'#09468f');
      }, 
      function () {
        $(this).css("background", "url(/siteassets/images/bg/nav_trans_bg.png) repeat-x");
        $(this).children('a').css('color' ,'#818483');
      }
    );
    */
});
