$(document).ready
(
    function()
    {
        $('#property_list .property_outercontainer').hover
        (
            function()
            {
                $(this).addClass('selected_property');
            },
            function()
            {
                $(this).removeClass('selected_property');
            }
        ).click
        (
            function(e)
            {
                e.preventDefault();
                window.location = $(this).find('.btnDetails a').attr('href');

                return false;
            }
        );

		var $imageAnchors = $('#property_detail_images a');
		
		if ($imageAnchors.length>0)
		{
			$imageAnchors.lightBox
			({
				fixedNavigation: true,
				imageBtnClose: '../lightbox/images/lightbox-btn-close.gif',
				imageBtnPrev: '../lightbox/images/lightbox-btn-prev.gif',
				imageBtnNext: '../lightbox/images/lightbox-btn-next.gif'
			});
		}
    }
);
