var is_image_loaded = function(img) {
    // IE
    if(!img.complete) {
        return false;
    }
    // Others
    if(typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) {
        return false;
    }
    return true;
}


$(document).ready( function() {
	var slideshow_first = $('#gallery_slideshow img:first');
	if ( slideshow_first.length )
	{
		if ( is_image_loaded(slideshow_first.get(0)) )
		{
			$('#gallery_slideshow').cycle();		
		}
		else
		{
			slideshow_first.load( function(e){
				$('#gallery_slideshow').cycle();
			});
		}
	}

	var glenmarie_first = $('#gallery_glenmarie img:first');
	if ( glenmarie_first.length )
	{
		if ( is_image_loaded(glenmarie_first.get(0)) )
		{
			$('#gallery_glenmarie').cycle();		
		}
		else
		{
			glenmarie_first.load( function(e){
				$('#gallery_glenmarie').cycle();
			});
		}	
	}

	var service_centre_first = $('#gallery_service-centre img:first');
	if ( service_centre_first.length )
	{	
		if ( is_image_loaded(service_centre_first.get(0)) )
		{
			$('#gallery_service-centre').cycle();		
		}
		else
		{
			service_centre_first.load( function(e){
				$('#gallery_service-centre').cycle();
			});
		}
	}
});