$(function () {

/*	HOMEPAGE	*/
$('.slideshow').cycle({
		fx: 'fade',
		timeout: 5000
	});


/*	PORTFOLIO PAGE */
	
	//link hover
	$('aside a').hover( function() {
		$(this).css('color', '#fff');
		var targetClass = "."+ $(this).attr('rel');
		$(targetClass + ' img').css('border-color', '#ccc');
	}, function() { 
		$(this).css('color', '#999');
		var targetClass = "."+ $(this).attr('rel');
		$(targetClass + ' img').css('border-color', '#353535');
	});
	
	//image hover
	$('.portfolio section a').hover( function() {
		$('img', this).css('border-color','#ccc');
		var targetRel = $(this).attr('class');
		$('a[rel=' + targetRel + ']').css('color', '#fff');
	}, function() { 
		$('img', this).css('border-color','#353535');	
		var targetRel = $(this).attr('class');
		$('a[rel=' + targetRel + ']').css('color', '#999');
	});
	

/*	PROPERTY PAGE	*/
	$('#thumbs img').hover( function() {
		$(this).css('border-color', '#ccc');
		}, function() { 
			$(this).css('border-color', '#353535');
	});		
	
	$('#thumbs img').hover( function() {
		$('#focus-image img').attr('src', $(this).attr('src').replace('thumbs/','')); 
		return false;							
	});
	
});
	
	
$('div.items a img').click(function() { $('#gallery-main-image img').attr('src', $(this).attr('src').replace('thumbs/','')); return false; });
