$(document).ready(function() {
   	
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	if(jQuery('#images').children().size()>3){
		jQuery('#images').addClass('jcarousel-skin-plh');
		jQuery('#images').jcarousel();}
	});


	function mycarousel_initCallback(carousel) {
    jQuery('.jcarousel-control a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
		$('.jcarousel-control').each(function(i){
			$(this).removeClass('active');							   
		});
		$(this).parent().addClass('active');
        return false;
    });

    jQuery('.jcarousel-scroll select').bind('change', function() {
        carousel.options.scroll = jQuery.jcarousel.intval(this.options[this.selectedIndex].value);
        return false;
    });
	};
