
            $(function() {
                $("#tabs").tabs();
              $("#accordion").accordion({
                    autoHeight: false,
                    icons: {
                        header: "ui-icon-circle-arrow-e",
                        headerSelected: "ui-icon-circle-arrow-s"
                    }
                });
 $("#formv").validate({
                    rules: {
                        passwordagain: {
                            equalTo: "#password"
                        }
                    }
                });


            });




if(jQuery().qtip) {
    jQuery(document).ready(function(){
        jQuery('.tooltip[title]').qtip({
            position: {
                corner: {
                    target: 'topRight',
                    tooltip: 'bottomLeft'
                }
            },
            style: {
                width: {
                max: 400
                },
                padding: 5,
                background: '#fff',
                color: '#5c504f',
                textAlign: 'center',
                border: {
                    width: 1,
                    radius: 3,
                    color: '#CFC892'
                },
                tip: 'bottomLeft',
                name: 'dark' // Inherit the rest of the attributes from the preset dark style
           }
        });
    });
}

