﻿$(document).ready(function() {
    $("#slider").easySlider({ // load media slider
        auto: true,
        continuous: true
    });
    /*
    $(".navbutton").each(function(intIndex) { // hover function
        $(this)
	    .mouseover(function() { // navigation hover mouseover effect
		alert("here");
		var str = $(this).attr("src");
		if (str.indexOf("hover") == -1) {
		    var src = $(this).attr("src").match(/[^\.]+/) + "_hover.png"; // match = src without file extension
		    $(this).attr("src", src);
		}
	    })
	    .mouseout(function() { // navigation hover mouseout effect
		var src = $(this).attr("src").replace("_hover", ""); // remove the hover
		$(this).attr("src", src);
	    });
    });
    */
});	