$(function(){
    $('tr.hover').mouseover(function(){
        $(this).addClass('hoverBackground');
    }).mouseout(function(){
        $(this).removeClass('hoverBackground');
    });

    $('div#menu p.menu').mouseover(function(){
        $(this).addClass('hoverBackground');
    }).mouseout(function(){
        $(this).removeClass('hoverBackground');
    });

    $('a.remove').click(function(){
        if(confirm('are you sure')){
            return true;
        }
        return false;
    });
    var options = {
        prevId: 		'prevBtn',
        prevText: 		'Previous',
        nextId: 		'nextBtn',
        nextText: 		'Next',
        controlsShow:		false,
        controlsBefore:         '',
        controlsAfter:		'',
        controlsFade:		true,
        firstId: 		'firstBtn',
        firstText: 		'First',
        firstShow:		false,
        lastId: 		'lastBtn',
        lastText: 		'Last',
        lastShow:		true,
        vertical:		false,
        speed:                  2000,
        auto:			true,
        pause:			9000,
        continuous:		true,
        numeric: 		false,
        numericId: 		'controls'
    };
    $("#slider").easySlider(options);
//    $.geekGaTrackPage('UA-11134589-1');
//    $('div#equal').equalHeights();
//    $("a[href='http://www.geekology.co.za/blog/']").each(function() {
//       $(this).click(function() {
//          $.geekGaTrackEvent('page', 'click', 'Home', '');
//       });
//    });
});