$(document).ready(function(){
    $('#propcont li').click( function() {
        var url = $(this).find('a').attr('href');
        window.location = url;
    });
    $('.column').hover(        
        function() {            
            $(this).css({
                backgroundImage: 'url(/assets/images/propcategoryhover.png)'
                //backgroundRepeat: 'none'
            });
            
            $(this).find('.wrapper').css({
                backgroundImage: 'url(/assets/images/columnbghover.jpg)'
                //backgroundRepeat: 'none'
            });
        },
        function() {
            $(this).css({
                backgroundImage: 'none'
            });
            $(this).find('.wrapper').css({
                backgroundImage: 'url(/assets/images/columnbg.jpg)'
                //backgroundRepeat: 'none'
            });
        }
    );
});
