﻿$(function () {
    $('#left_ckRoomType:checkbox').change(function () {
        if ($(this).attr('checked')) {
            $('#roomDiv').show(300);
        }
        else
            $('#roomDiv').hide(300);
    });
    $('#left_ckBath:checkbox').change(function () {
        if ($(this).attr('checked')) {
            $('#bathDiv').show(300);
        }
        else
            $('#bathDiv').hide(300);
    });
    $('#left_ckPrice:checkbox').change(function () {
        if ($(this).attr('checked')) {
            $('#priceDiv').show(300);
        }
        else
            $('#priceDiv').hide(300);
    });
    $('#left_ckFurniture:checkbox').change(function () {
        if ($(this).attr('checked')) {
            $('#furnitureDiv').show(300);
        }
        else
            $('#furnitureDiv').hide(300);
    });
    $('#left_ckUtility:checkbox').change(function () {
        if ($(this).attr('checked')) {
            $('#utilityDiv').show(300);
        }
        else
            $('#utilityDiv').hide(300);
    });
});
