﻿$(document).ready(function () {
    $('.menu_home,.menu_download,.menu_about,.menu_pro,.menu_tiger,.menu_store,.index_tab_blog,.index_tab_fb,.index_tab_tw,.index_tab_youtube,').wrapInner('<span class="hover"></span>').css('textIndent', '0')
				.each(function () {
				    $('span.hover').css('opacity', 0).hover(function () {
				        $(this).stop().fadeTo(250, 1);
				    }, function () {
				        $(this).stop().fadeTo(250, 0);
				    });
				});
});
