$(document).ready(function() {
	/*
	WORLD CLOCK
	------------------------------------------
	*/
	var oUTC   = { format: '%H:%M', utc: true, utc_offset: 0 }
	var oAthens = { format: '%H:%M', utc: true, utc_offset: +2 }
    jQuery('#jclock1').jclock(oUTC);
    jQuery('#jclock2').jclock(oAthens);
    
    $('.clicktoclose').click(function() {
        $(this).slideUp('slow');
    });
});
