



/** =====================================================================
*
* Btn effect
*
* =================================================================== */


$(document).ready(function()
{
	$('.link').hover(function()
	{
		$(this).stop();
        $(this).fadeTo(300, .6);
    },
    function()
	{
        $(this).fadeTo(300, 1.0);
    });
});





