/*  ###########################################################################
    company:    http://42.nl/
    client:     Roparun
    date:       October 2008
    author:     Egor Kloos
    ########################################################################### */
    
    

$(document).ready(function(){
            
        // validate the form when it is submitted
        $("form").each(function(){$(this).validate();});  
        $("label span.required").parent().next(":input").addClass("required");
        
        
        // HACKS IE6!!!
        if($.browser.msie &&  $.browser.version < 7) {
            $("input[type=checkbox], input[type=radio]").addClass("IE-input-float")       ;
            $("input[type=checkbox] + label, input[type=radio] + label").addClass("IE-input-label");
            $("input[type=text], input[type]password]").addClass("IE-input-text");
            $("input[type=radio] + label.error, input[type=checkbox] + label.error").addClass("IE-label-error");
            $("button[type=submit]").addClass("IE-button-submit");
        }
        // END: HACKS IE6!!!
        

});


  function display_member_info(obj, source, show) {
    var obj = $('#' + obj);
	var source = $(source);
    $('div.member_detail').each(function(){$(this).hide();});
	
	obj.css("left", source.position().left-4);
	obj.css("top", source.position().top-3);
    
	if (show) obj.show();
	}
