$(document).ready(function(){

    //Sets active class to links where page is active
    var url = window.location;
    var urlString = String(url);
    var path1 = urlString.replace('http://www.wise-sites.com', '')
    var path = path1.replace('#', '');

    if (path != '/') {
        $('a[href='+path+']').addClass('active');
    }else{
        $('a[href=/]').addClass('active');
        $('a[href=/index.php]').addClass('active');
    }
    if (path.match('/blog/') != null) {
        $('a[href=/blog/]').addClass('active');
    }

    //mouse pointer when over submit buttons
    $('input[type=submit]').hover(function(){
        $(this).css('cursor', 'pointer');
    }, function(){
        $(this).css('cursor', 'auto');
    });

    
});



