$(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);
    });
    
    $('.btnTransparent').hover(function () {
		$(this).css('opacity', '0.2');
		$(this).fadeTo(200, 0.5);
	}, function () {
		$(this).fadeTo(100, 0.2);
	});
	
});
