jQuery(document).ready(function($){
	$('a[href$=jpg], a[href$=JPG], a[href$=jpeg], a[href$=JPEG], a[href$=png], a[href$=gif], a[href$=bmp]:has(img)').colorbox({
		'opacity'	:	.7	
	});	
	
	$('#cities a, .citypop a').click(function(e){
		e.preventDefault();	
		$href = $(this).attr('href');
		$('#inlinebox').html('').show().load($href+' #locationlist', function() {
			$.fn.colorbox({open:true, inline:true, href:'#inlinebox', 'opacity'	:	.7 }); 
		});
	});
	
	$('#clientlogos a').click(function(e){
		e.preventDefault();
		launchColorbox($(this).attr('href'));	
	});
	
});

function launchColorbox(url){
	jQuery('#clientbox').html('').show().load(url+' #contentleft', function() {
		jQuery.fn.colorbox({open:true, inline:true, href:'#clientbox', 'opacity'	:	.7 }); 
	});
}

