// JavaScript Document

$(document).ready(function() {

	/* GENERAL: top con auto scroll up */
	$('#page_top_link img').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	});

	/* TRABAJO: slideshow */
	$('.slideshow').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 10000, /* 10 segundos = 10000 */
		next:   '#slideshow_next', 
		prev:   '#slideshow_prev' 
	});

	/* TRABAJO: reemplazar el nombre del proyecto */
	$('div.page-alias-trabajo div.mod_breadcrumb span.active').html($('#project-title').html());

	/* CONTACTO: mapa */
	$('div#direccion a').addClass('iframe');
	$('div#direccion a').fancybox({
		'hideOnContentClick': true,
		'titleShow': false,
		'height': 360,
		'width': 560
	});


/*
$('div.ce_comments').attr('id', 'comments');
$('div.form div.widget input.captcha').addClass('input');
$('#ctrl_captcha').css('width', '50%')
$('table.minicalendar th.previous a').html('«');
$('.cita-clara-derecha').wrap('<blockquote class="pullquote alignright" />');
*/

});

