/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


jQuery(document).ready(function(){
    // binds form submission and fields to the validation engine
    jQuery("#subscribeForm").validationEngine('attach', {
        promptPosition : "centerRight"
    });
    jQuery("#form_newsletter_widget").validationEngine('attach', {
        promptPosition : "centerRight"
    });
              
    jQuery('body.home h2.post-title a').each(function(index) {
        var text = '<a href="'+jQuery(this).attr("href")+'" class="read-more">Read more</a>';
        jQuery(this).parent().parent().append(text);
    });
              
});

