/**
 * Javascript functions for /faq.php
 */
$(document).ready(function() {
				
	/**
	 * Mark the selected pack
	 */	 
	 //$(".prices_adv li").css("cursor", "pointer");
     $(".prices_adv li").hover(
		function () {			
            //jQuery.fx.off = true;
            $(this).siblings().stop();

            $(this).siblings().fadeTo("fast", 0.25);
		},
		function () {
			$(this).siblings().fadeTo("fast", 1);
		}
     );
});