jQuery(function($){
		$.localScroll({
                        duration: 1500
		});
});

$(document).ready(function(){
        $(document).bind("contextmenu",function(e){
                return false;
        });


        $('a[@rel$=external]').click(function(){
                this.target = "_blank";
        });

        /*
        Usage:
        <a href="http://www.lepinskidesign.com.br/" rel="external">lepinskidesign.com.br</a>
        */

});


function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}

/*
Usage:
$(document).ready(function() {
    equalHeight($(".recent-article"));
    equalHeight($(".footer-col"));
});
*/

