﻿
$(function(){
						
			//超链接无虚线框处
			$("a").focus( 
                function () { 
                    $(this).blur(); //得到焦点与失去焦点效果一致
                }
             )
        })

$(document).ready(function(){
						   //循环背景
$(".index_digg li:even").addClass("bg1");
$(".index_digg li:odd").addClass("bg2");
$(".index_digg li").hover(function(){
$(this).addClass("hover");
},
function(){
$(this).removeClass("hover");
});
});

$(document).ready(function(){
						   //超大链接区
						   $(".标签名 li").click(function(){
															  window.location=$(this).find("a").attr("href");return false;
															  });
						   });

//控制文字渐显

$(document).ready(function(){
						   $(".QuoteCode").fadeTo("slow", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".QuoteCode").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.5); // This should set the opacity back to 30% on mouseout
							   	});
						   });
