jQuery(function($) {
	$('div.btn-submit').hover(function(){$(this).addClass('hover')}, function(){$(this).removeClass('hover')})
	$('div.btn-send').hover(function(){$(this).addClass('hover')}, function(){$(this).removeClass('hover')})
        $('a[rel=external]').attr('target', '_blank');
});