
function close_win(){
  var nvua = navigator.userAgent;
    if(nvua.indexOf('MSIE') >= 0){
      if(nvua.indexOf('MSIE 5.0') == -1) {
        top.opener = '';
      }
    }
    else if(nvua.indexOf('Gecko') >= 0){
      top.name = 'CLOSE_WINDOW';
      wid = window.open('','CLOSE_WINDOW');
    }
    top.close();
}

$(document).ready(function(){
	$(".btn").find("img").fadeTo(0, 0);
	$(".btn").hover(
		function(){
			$(this).find("img").stop();
			$(this).find("img").fadeTo(200, 1);
		}
		,
		function(){
			$(this).find("img").stop();
			$(this).find("img").fadeTo(500, 0);
		}		  		  
	);
});
