// JavaScript Document
(function($) {
	$.fn.equalHeights = function(minHeight, maxHeight) {
		tallest = (minHeight) ? minHeight : 0;
		this.each(function() {
			if($(this).height()> tallest) {
				tallest = $(this).height();
			}
		});
		if((maxHeight) && tallest> maxHeight) tallest = maxHeight;
		return this.each(function() {
			$(this).height(tallest).css("overflow","auto");
		});
	}
})(jQuery);


$(document).ready(function() {

    $("#features .featurepanel, #plans tr.hover, .contactinfo div div").hover(function() {
        $(this).stop().animate({ 
            backgroundColor: "#e5e5e5"
        }, "fast");
    }, function() {

        $(this).stop().animate({
            backgroundColor: "#F0F0F0"
        }, "slow");
    });

});