// JavaScript Document

			
	<!--begin slider-->

    $(function() {
        $(".belt").jCarouselLite({
            btnNext: ".next",
            btnPrev: ".prev",
			auto: 2000,
			hoverPause: true,
    		speed: 500,
			visible: 3
        });
    });
	
	
	<!--feature properties caption-->


		$(document).ready(function(){
			$('.panel').hover(function(){
				$(".image_caption", this).stop().animate({top:'157px'},{queue:false,duration:157});
			}, function() {
				$(".image_caption", this).stop().animate({top:'182px'},{queue:false,duration:157});
			});
		});


		
		
		
$(document).ready(function(){

	$('.suburbs_check0').click(function() {
		if ($('.suburbs_check0').attr("checked") == true) {
			$("input[name^='suburbs']").attr("checked", true);
		} else {
			$("input[name^='suburbs']").attr("checked", false);
		}
	});
	
	
	$('.suburbs_check').click(function() {		
		$('.suburbs_check0').attr("checked", false);		
	});
	
		
	$('.catg0').click(function() {
		if ($('.catg0').attr("checked") == true) {
			$("input[name^='catg']").attr("checked", true);
		} else {
			$("input[name^='catg']").attr("checked", false);
		}		
	});
	
	
	$('.catg').click(function() {
		$('.catg0').attr("checked", false);
	});

	$('#image-links li div').animate({'opacity':0.75},1);
	$('#image-links li div').hover(function() {
	$(this).stop().animate({'opacity':1}, {queue:false, duration:100}, 'swing');
	}, function() {$(this).stop().animate({'opacity':0.75}, {queue:false, duration:100}, 'swing')}); 

});
