$(document).ready(function(){
	var popup;
	
	/** Enllaços generals *******************************/
	$('a[rel="external"]').click(function(){
		window.open(''+this.href+'');
		return false;
	});
	
	// Obrir popups
	$('a[rel="popup"]').click(function(){
		if(!popup || popup.closed){
			popup = window.open(''+this.href+'', 'popup', 'width=600, height=600, toolbar=no, location=no, directories=no, status=no,menubar=no, scrollbars=yes, resizable=yes, top=0, left=0, top=' + ((screen.height/2)-(300)) + ', left=' + ((screen.width/2) - (225)));
		}else{
			popup.focus();
		};
		
  	return false;
	});
	
	// Tancar finestra
	$('a[rel="close"]').click(function(){
		window.close();
		return false;
  });
	
	$('a[rel="print"]').click(function(){
		print();
		return false;
	});
	
	// Rellotge
	var options = {
		timeNotation: '24h',
		am_pm: false,
		show_seconds: false,
		show_date: true
	}

	$(function($) {
  	$('.rellotge').jclock(options);
	});
});