
$j(function() {
	$j('.rollover_ja').hover(function() {
		var currentImg = $j(this).attr('src');
		$j(this).attr('src', $j(this).attr('hover'));
		$j(this).attr('hover', currentImg);
	}, function() {
		var currentImg = $j(this).attr('src');
		$j(this).attr('src', $j(this).attr('hover'));
		$j(this).attr('hover', currentImg);
    });

    $j('#rollover_ja').hover(function() {
        $j(this).attr('class', 'inp_dd_rollover pointer');
    }, function() {
        $j(this).attr('class', 'inp_dd pointer');
    });

});  

$j(function() {
	$j('.rollover_oe').hover(function() {
		var currentImg = $j(this).attr('src');
		$j(this).attr('src', $j(this).attr('hover'));
		$j(this).attr('hover', currentImg);
	}, function() {
		var currentImg = $j(this).attr('src');
		$j(this).attr('src', $j(this).attr('hover'));
		$j(this).attr('hover', currentImg);
    });

    $j('#rollover_oe').hover(function() {
        $j(this).attr('class', 'inp_dd_rollover pointer');
    }, function() {
        $j(this).attr('class', 'inp_dd pointer');
    });

}); 

$j(function() {
    $j('.arrow').hover(function() {
        $j(this).addClass('overcontent');
    }, function() {
        $j(this).removeClass('overcontent');
    });

}); 

$j(function() {
    $j('.arrow2').hover(function() {
        $j(this).addClass('overcontent2');
    }, function() {
        $j(this).removeClass('overcontent2');
    });

}); 

$j(function() {
    $j('.pdf_download a').hover(function() {
        $j(this).find('img').attr('src',baseUrl+'/gfx/pdf_download_a.gif');
    }, function() {
        $j(this).find('img').attr('src',baseUrl+'/gfx/pdf_download.gif');
    });

});

$j(function() {
	$j('.rollover').hover(function() {
		var currentImg = $j(this).attr('src');
		$j(this).attr('src', $j(this).attr('hover'));
		$j(this).attr('hover', currentImg);
	}, function() {
		var currentImg = $j(this).attr('src');
		$j(this).attr('src', $j(this).attr('hover'));
		$j(this).attr('hover', currentImg);
    });

   
});  


