2011-03-15 23:51:43 -07:00
|
|
|
$(function() {
|
|
|
|
|
|
2011-03-16 18:48:27 -07:00
|
|
|
$('#show').hide();
|
2011-03-15 23:51:43 -07:00
|
|
|
|
|
|
|
|
$('#hide').click(function() {
|
|
|
|
|
$(this).hide();
|
|
|
|
|
$('#show').show();
|
|
|
|
|
$('#enquiryTable').slideUp('fast');
|
2011-03-16 18:48:27 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('#show').click(function() {
|
|
|
|
|
$(this).hide();
|
|
|
|
|
$('#hide').show();
|
2011-07-14 19:56:08 -07:00
|
|
|
$('#enquiryTable').slideDown('fast');
|
2011-03-15 23:51:43 -07:00
|
|
|
|
|
|
|
|
});
|
|
|
|
|
});
|