$(document).ready(function(){

	$(".info a[rel=colorbox], .image-container a[rel=colorbox], div[rel=colorbox]").colorbox({photo:true,width:'670',maxWidth:'90%',maxHeight:'90%'});
	$(".image-container").next().find('a:first').colorbox({photo:true,width:'670',maxWidth:'90%',maxHeight:'90%'});
	$("#imageFavorites a[rel=colorbox]").colorbox({photo:true,width:'670',maxWidth:'90%',maxHeight:'90%'});
	$("#imageContribs a[rel=colorbox]").colorbox({photo:true,width:'670',maxWidth:'90%',maxHeight:'90%'});
	
	$(".logo").click(function(){
		$(this).next().find('a:first').trigger('click');
	});
	
	/*$().bind('cbox_complete',function(){
		$('#cboxLoadedContent').append('<div class="bottom-loader" />');
		$.fn.colorbox.resize();
		$.ajax({
			url:'/images/imageBottom',
			success:function(data){
				$(".bottom-loader").hide();
				$('#cboxLoadedContent').append(data);
				$.fn.colorbox.resize();
			}
		});
		//$('#cboxLoadedContent').append('<div style="color:white">Hey You What!!!!</div>');
	});*/
	

});