//Runs all custom jQuery and functions
$(function () {
    $('body').supersleight();

    $(".mouseOver").hover(function () {
        $(this).attr("src", $(this).attr("src").split(".").join("_ovr."));
    }, function () {
        $(this).attr("src", $(this).attr("src").split("_ovr.").join("."));
    });

    $('.logo').hoverIntent(function () {
        $(this).animate({ top: '+=5' }, 400);
    }, function () {
        $(this).animate({ top: '-=5' }, 400);
    });
});

function verlicon(data){
	if (window.console && window.console.firebug) {
		//Firebug is enabled
		console.log(data);
	} else if(window.console){
		console.log(data);	
	}
}
