// JavaScript Document

$(document).ready( function() {
	
	$('.custombox').click(
			function() {
				$('#custombox-img').attr('src',this.href);
				$('#custombox-link').attr('href', (this.href.replace('/project/','/l/')).replace('/page/','/l/'));
				$('.custombox-clone').attr('rel', 'gallery-projects');
				for($i=0;$i<9;$i++){
					var img_change = 'http://'+location.host+$('.custombox-clone > img:eq('+$i+')').attr('src');
					//alert(img_change);
					if(img_change == this.href){
						$('.custombox-clone:eq('+$i+')').attr('rel', '');
						//alert('ok');
					}
				}
				return false;
			}
	);
});
