$(document).ready(function(){

	// external links hack
	$('a.external').click( function(){	window.open(this.href,'_blank'); return false;});
	
	// links outline hack 
	$('a, label').bind('focus',function(){if(this.blur)this.blur();});
	
	// Skype tel hack
	$('.sTel').each(function (i) {
		sTel = $(this).attr('title');
        $(this).text(sTel);
    });

	
});