/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
jQuery(document).ready(function() {

    jQuery("#nav").find("li.parent").each(
        function(index) {
             jQuery(this).children("a").attr("href", "#");
        }
    );
});
