function pageLoaded(){
	
	// Fool the validator by post adding target='_blank' to links with rel=external
	$('a[rel=external]').attr('target', '_blank');

	//clickable block
	$(".clickable-block").click(function(){
	  window.location=$(this).find("a").attr("href");
	  return false;
	});

	if ($('#home-page').length > 0 || $('#getcon').length > 0 || $('#whatshot-page').length > 0) {
	    if ($('#whatshot-page').length > 0)
	    { initCarousel(220); }
	    else
	    { initCarousel(286); }
		
	}
	if ($('#recipes-page').length > 0 || $('#recipe-page').length > 0 || $('#product-page').length > 0) {		
		// Recipes banner images
		initBanner('recipes.xml');
    }
    // Recipes Quick Links open/close
    $('.concertina .maincatlink').click(function(e) {
        e.preventDefault();
        if ($(this).parent().hasClass('open-li'))
            $(this).parent().removeClass('open-li')
        else
            $(this).parent().addClass('open-li')
    });    	
}

