jQuery(document).ready(function($){

    $('.read-more').live('click', function(e) {
		e.preventDefault();
		$(".rest-of-pro-text").animate({
            height: 'toggle', 
            opacity: 'toggle'
        }, "slow");
		$(this).fadeOut();
		$('.con').css('color', '#999');
		$('html, body').animate({
	    	scrollTop: $("#footer").offset().top
		}, 2000);
    });

    $('.hide-more').live('click', function(e) {
		e.preventDefault();
		$(".rest-of-pro-text").animate({
            height: 'toggle', 
            opacity: 'toggle'
        }, "slow");
		$('.read-more').fadeIn();
		$('.con').css('color', '#666');
    });

	$('img.thumb').bind('mouseenter', function() { jQuery(this).fadeTo(200, 0.70); });
	$('img.thumb').bind('mouseleave', function() { jQuery(this).fadeTo(200, 1.0); });
});

