$(document).ready(function() {
$('a[href^="http://"]').attr('rel', 'external');
$('a[rel="external"]').click(function () {
$(this).attr({'target':'_blank'});
});

$('.rounded').corners();

 $('#myForm').ajaxForm({
            target: '#output'
});

$.localScroll({
	duration:1500,
    lazy: true,
	hash:true
	});
 
});
