// JavaScript Document
if( curr_browser.msie && curr_browser.version == 6.0){
	
/* JQuery Dropdown Menu and Rollover images */
$(document).ready(function() {

    /* general hovers 
    $(".hover").each(function() {
        if ($(this).attr("src").match(/_hv\.(.+)$/i)) {
            $(this).removeClass("hover");
        }
    });
    $(".hover").hover(function() {
        s = $(this).attr("src").replace(/\.(.+)$/i, "_hv.$1");
        $(this).attr("src", s);
    }, function() {
        s = $(this).attr("src").replace(/_hv\.(.+)$/i, ".$1");
        $(this).attr("src", s);
    });
	*/
	
	/* drop down */
	$(".nav_top_r")
		.superfish({
			animation : { opacity:"show",height:"show"}
		})
		.find(">li:has(ul)")
			.mouseover(function(){
				$("ul", this).bgIframe({opacity:false});
			})
			.find("a")
				.focus(function(){
					$("ul", $(".nav_top_r>li:has(ul)")).bgIframe({opacity:false});
				});
				
	/* left drop down */
	$(".nav_left_r")
	.superfish({
		animation : { opacity:"show",height:"show"}
	});
		
});  

} // if( curr_browser.msie && curr_browser.version == 6.0)