jQuery(document).ready(function($){
	$('.interview').mouseover(function(){
		$(this).stop().animate({
			backgroundColor: '#f1f2ea'
		}, 'normal');
		$(this).children('.pic').stop().animate({
			opacity: 1
			}, 'normal');
	}).mouseout(function(){
    	$(this).stop().animate({
			backgroundColor: '#eeeed7'
		}, 'normal');
		$(this).children('.pic').stop().animate({
			opacity: 0.7
			}, 'normal');
	}).css('cursor', 'pointer').click(function(){
		window.location = '/interior/interview/' + $(this).attr('id');
	})
});
