/**
 * jQuery - Config file
 */
jQuery(document).ready(function($)
{
    /**
     * Google Analytics
     */
    MyGoogleAnalytics('UA-7202200-12');

    /**
     * New Window Open
     */
    $('a[href^="http"]').not('a[href^="http://'+ location.host +'"]').NewWinOpen();

    /**
     * Image Rollover
     */
    $('#gNavi a img').rollover();

    $('.section', '#main').after('<div class="radius" />');
    $('.radius', '#main').css({
        margin: '-60px 0 40px',
        height: '20px',
        background: 'url("/share/img/main_radius.gif") 0 0 no-repeat'
    });

    $('th:even, td:even', '#profile table').addClass('even');
    $('#comments div.comment:even, #trackbacks div.trackback:even').addClass('even');

    $('dt', '#region').hover(
        function() {
            $('#'+ $(this).attr('class')).addClass('view');
        },
        function() {
            $('#'+ $(this).attr('class')).removeClass('view');
        }
    );
});

