/***************************************************************************
 * @Author: CSSJockey.com - Unique & Practical Web Presence!
 * @Website: http://www.cssjockey.com/
 * @Contact: http://www.cssjockey.com/get-in-touch
 ***************************************************************************/

var j = jQuery.noConflict();

j(document).ready(function(){

    // Tabbed Widget

    j(".tab-authors").removeClass('hidden');
    j("#tab-authors").addClass('active-tab');

    j(".tab").click(function(){
        j(".tabs").addClass('hidden');
        j(".tab").removeClass('active-tab');
        j(this).addClass('active-tab');
        var id = '.'+j(this).attr('id');
        j(id).removeClass('hidden');
        return false;
    })

    // Contact Form

    j("#contact-form").submit(function(){
        
        j(".req").each(function(){
            if(j(this).val() == ''){
                j(this).parent().find('label span').addClass('required');
                error = 1;
            }else{
                error = 0
            }
        })

        if(error > 0){
            return false;
        }else{
            return true;
        }

    })   

});
