$(document).ready(function() {
// colorize img
		$("img.imghv").mouseover(function() {
				this.oldsrc = this.src;
				this.src = this.src.replace(".jpg", "_h.jpg");
			})
			.mouseout(function() {
				if (this.oldsrc != undefined) this.src = this.oldsrc;
			});
		$("img.hvpng").mouseover(function() {
				this.oldsrc = this.src;
				this.src = this.src.replace(".png", "_h.png");
			})
			.mouseout(function() {
				if (this.oldsrc != undefined) this.src = this.oldsrc;
			});	

		$('#boxImg1').cycle({ 
			fx:    'scrollDown', 
    		sync:   0, 
    		delay: -2500,
			timeout:  6000
		});
		$('#boxImg2').cycle({ 
			fx:    'scrollDown', 
    		sync:   0, 
    		delay: -2350,
			timeout:  6000
		});
		$('#boxImg3').cycle({ 
			fx:    'scrollDown', 
    		sync:   0, 
    		delay: -2200,
			timeout:  6000
		});
		$('#boxImg4').cycle({ 
			fx:    'scrollDown', 
    		sync:   0, 
    		delay: -2050,
			timeout:  6000
		});
		$('#boxImg5').cycle({ 
			fx:    'scrollDown', 
    		sync:   0, 
    		delay: -1900,
			timeout:  6000
		});
		
		$("a[rel='galeria']").colorbox();
		
		$("table tr:odd").addClass("oddtr");
		$("table tr").mouseover(function() {$(this).addClass("trover");}).mouseout(function() {$(this).removeClass("trover");}).click(function() {$(this).toggleClass("trclick");});

});


