/************************************************
  
    Site Name: 
	Description: common script
	Version: 1.0
	Author: 
	Last Modified :

************************************************/
$(function()
{
		var targetImgs = $('#global_nav a img,img.over2');
		
		targetImgs.each(function()
		{
			if(this.src.match('_off'))
			{
				
				this.rollOverImg = new Image();
				this.rollOverImg.src = this.getAttribute("src").replace("_off", "_on");;
				$(this.rollOverImg).css({position: 'absolute', opacity: 0});
				$(this).before(this.rollOverImg);
				
				$(this.rollOverImg).mousedown(function(){
					$(this).stop().animate({opacity: 0}, {duration: 0, queue: false});
				});
				
				$(this.rollOverImg).hover(function(){
					$(this).animate({opacity: 1}, {duration: 250, queue: false});
				},
				function(){
					$(this).animate({opacity: 0}, {duration: 250, queue: false});
				});
				
			}
		});
});

