/*  ================================================================================
img Rollover
================================================================================  */
$(document).ready(function(){
  $('a img.rOver')
    .mouseover(function(){
        $(this).animate({opacity: 0.8}, 'fast');
    })
    .mouseout(function(){
        $(this).animate({opacity: 1.0}, 'fast');
    });
});

var preLoadImg = new Object();
function initRollOvers(){
	$("img.imgrollover").each(function(){
		var imgSrc = this.src;
		var sep = imgSrc.lastIndexOf('.');
		var onSrc = imgSrc.substr(0, sep) + '_o' + imgSrc.substr(sep, 4);
		preLoadImg[imgSrc] = new Image();
		preLoadImg[imgSrc].src = onSrc;
		$(this).hover(
			function() { this.src = onSrc; },
			function() { this.src = imgSrc; }
		);
	});
}
$(function(){
	initRollOvers();
});

/*  ================================================================================
DD_belatedPNG for IE6
================================================================================  */
function DD_belatedFunc() {
	DD_belatedPNG.fix('#cntWrap img');
	DD_belatedPNG.fix('#contentTopBg');
	DD_belatedPNG.fix('#errorTitle img');
}
