$(document).ready(function() {
    $(".anchor").click(function(){
		where = $(this).children('a').attr('href');
		$(where).highlightFade({speed: 'slow'});
	})
});

//Javascript part assuming that you have already included jquery.js in your header
$(document).ready(function() {
    $("#select_all_listings").click(function() {
        select_all_listings();
    }) ;
    $("#deselect_all_listings").click(function() {
        deselect_all_listings();
    }) ;
});

function select_all_listings() {
    $(".short_view").children('input[type="checkbox"]').attr("checked","false");
    //$("#select_all_listings").unbind("click");
    //$("#select_all_listings").click(function() {
    //    deselect_all_listings();
    //}) ;

}

function deselect_all_listings() {
    $(".short_view").children('input[type="checkbox"]').removeAttr("checked");
};

