$(document).ready(function(){
	var $currentImage;
	$('.press_release_images a.highres_link').hide();
	
	selectImage($('.press_release_images a:first').get());
	
	$('.press_release_images a').click(function(){
		selectImage(this);
		return false;	
	});
	
	
	function selectImage(img){
		$currentImage = $(img);
		$('.press_release_images a').css('opacity', 1);
		$currentImage.css('opacity', 0.5);
		
		var img =  $currentImage.attr('href');
		$('#download_low').attr('href', $currentImage.attr('href'));
		
		$('div.caption div.inside').text($currentImage.attr('title'));
		
		// Check for high res download options
		
		if($currentImage.next().attr('href')){
			
			img =  $currentImage.attr('href');
			$('#download_high').attr('href', $currentImage.next().attr('href'));
			$('#download_high').parent().show();
		}else{
			$('#download_high').parent().hide();
		}
		
		
		$('#main_image img').attr('src', phpThumbBase + '?q=80&zc=0&w=670&h=300&src=' + img  );
	}	
		
});
