


$(document).ready(function(){
	
	$(".inline").colorbox({inline:true, width:"600px", height:"400px"});
	$(".group1").colorbox({rel:'group1'});
	
	$("#pageflip").hover(function() {
		$("#pageflip img, .msg_block").stop()
			.animate({
				width: '320px', 
				height: '319px'
			}, 300); 	
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});
	
});

	/* EJECUCIÓN CARRUSEL*/
    function mycarousel_initCallback(carousel){
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        auto: 3,
        wrap: 'last',
        initCallback: mycarousel_initCallback
    });
});
	/* final del carrusel */




