/// *** Publicidad PopUp Curl
$(document).ready(function(){
	$('#target').fold();
	$('html, body').animate({scrollTop: $("#scrollToHere").offset().top}, 1000);
});

/// *** Scroll Top
$('a.top').click(function(){
	$('html, body').animate({scrollTop: '0px'}, 1000);
	return false;
});

/* 3 *** JCAROUSEL */
/*
$(function() {
    $(".anyClass").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
});
*/
/*
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        // Configuration goes here
    });
});
*/
/*
jQuery(document).ready(function() {
    jQuery('.imageCarousel').jcarousel({
        auto: 3,
        scroll: 1,
        wrap: 'last',
        animation: 700,
        initCallback: mycarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
});

function mycarousel_initCallback(carousel) {
    jQuery('.carousel-next').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('.carousel-prev').bind('click', function() {
        carousel.prev();
        return false;
    });
};
*/
