$(document).ready(function() {
	
	$('a').each(function(i) { 
		var relAttribute = $(this).attr('rel');
		if ($(this).attr('href') && relAttribute.toLowerCase().match('simplebox')) {
			//alert ($(this).attr('href'));
			$(this).click(function() { show($(this).attr('href')); return false; })
		}		
	});
	
});

function show(url)
{
	var old_image = $('img.main_image').attr('src');
	var new_image = 'code/image_size.php?path=' + url;
	//var new_image = 'code/image_size.php?path=' + url + '&w=390';

	//$('#image_wrapper').css('background', old_image + ' no-repeat');
	$('img.main_image').attr('src', new_image).fadeIn('slow');
}

