GRC_p = function(){};
function GRC(data){
	jQuery(document).ready(function() {
	 jQuery.each(data.items, function(i,item){
	 	
        jQuery("<a></a>").attr("href", item.alternate.href).html(item.title).appendTo('.shadow-box .container .ind-news');
         if ( i == 1 ) return false;
     });
	});			
};

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        auto: 4,
        wrap: 'last',
		scroll: 1,
		animation: 1000,
        initCallback: mycarousel_initCallback
    });
	
	 jQuery('#mycarousel1').jcarousel({
        auto: 4,
        wrap: 'last',
		scroll: 1,
		animation: 1000,
        initCallback: mycarousel_initCallback
    });
	
});

function mycarousel_initCallback(carousel)
{

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
