// -*- coding:utf-8 -*-

//

$(document).ready( function() {

	$('a').not('.dialog').click(function(event){
		event.preventDefault();
		
		if ($(this).attr('href').slice(0, 7) == 'http://'){
			window.open($(this).attr('href'))
		} else {
			window.location.href = $(this).attr('href');
		}
	});

    $('.facebook-link').click(function(event) {
	event.preventDefault();
	var url = location.href;
	var title = document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(url)+'&t='+encodeURIComponent(title),'sharer','toolbar=0,status=0,width=626,height=436').focus();
	return false;
    });
        
});

function label_inputs(el) {
    el.find('input:text, textarea').not('.rich-text').each(function() {
        if ($(this).attr('title')) {
            $(this).example($(this).attr('title'), {className: 'discreet'});
            $(this).attr('title', '');
        }
    });
}
