jQuery(document).ready(function(){
    // Add 'prenumerata' headline to the right column
    jQuery('div#prenumerata').prepend('<h2 class="hl" style="font-size: 14px;">Prenumerata</h2>');
    
    // Add clearing div after each form field. w00t w00t!
    jQuery('div#columns .mod_registration input').each(function() {
      jQuery(this).after('<div class="clear"></div>');
    });

    // Box Equal Height
    jQuery('.col1 .post.even').each(function(){
            
            h_left = jQuery(this).children('.box-post-content').height();
            h_right = jQuery(this).next('.odd').children('.box-post-content').height();
            
            if(h_left >= h_right)
            {
                jQuery(this).next('.odd').children('.box-post-content').height(h_left);
            }
            if (h_left < h_right)
            {
                jQuery(this).children('.box-post-content').height(h_right);
            }
        })
        

    
})

