$(document).ready(function(){

$("#DAbody tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
$('#DAbody tr:odd').addClass('alt'); 

if ($("#header").width() < 725)
		{
			$("#shape-image").css("display","none");
		}





});

$(window).resize(function() {
 if ($("#header").width() < 725)
		{
			$("#shape-image").css("display","none");
		} else {
	                $("#shape-image").css("display","block");
                }

});


function goToNewPage(dropdownlist)
 {
 var url = dropdownlist.options[dropdownlist.selectedIndex].value
 if (url != "None")
 {
 window.open(url);
 }
 }
 
 
$(function() {
    $('#new_div_23244').cycle({
        fx:     'fade',
        speed:  500,
        timeout: 0,
        pager:  '#map_choice',
        pause:   1,
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#map_choice li:eq(' + (idx) + ') a';
        }
    });
});


