	$(document).ready(function() { 
	    
		$('#campaign-inner').cycle({ 
			speed:    2000, 
			timeout:  2500 
		});
		
		$('#history-alpha').localScroll();
		
	    $('a.external').click( function() {
	        window.open( $(this).attr('href') );
	        return false;
	    });
		
		$('a.hasChildren').click( function() {
	        $(this).siblings('.countries').slideToggle();
			//alert('test');
			return false;
	    });

        $('#product-views-inner a').click(function(){
           $('#product-image img').remove();
           $('#loading').show();
            var href = $(this).attr('href')
            var img = new Image();
            $(img).load(function(){
                $('#product-image').append(img);
                $('#loading').hide();
            }).attr('src',href);
            return false;
        });	

	});
