$(function() {
            $('ul.gallery li img').animate({"opacity": .5 });

            $('ul.gallery li img').hover(function() {
                $(this).stop().animate({ "opacity": 1 });
            }, function() {
                $(this).stop().animate({ "opacity": .5 });
            });
        });

$(function() {
            $('li.award').css({"background": '#adad9a' });

            $('li.award').hover(function() {
                $(this).stop().css({ "background": '#C6C6B9' });
            }, function() {
                $(this).stop().css({ "background": '#adad9a' });
            });
        });

//$(function() {
//            $('li.listing').css({"background": '#fefefe' });
//
//            $('li.listing').hover(function() {
//                $(this).stop().css({ "background": '#E5E4D5' });
//            }, function() {
//                $(this).stop().css({ "background": '#fefefe' });
//            });
//        });

$(document).ready(function() {
 
        $('#aboutmore').css({"display": 'none' });

	$("#show").click(function(){
		$("div#aboutmore").slideDown("slow");
                $(this).css("display", 'none');
	});
        
        $("#hide").click(function(){
		$("div#aboutmore").slideUp("slow");
                $('a#show').css({"display": 'block' });
	});
 
});


