﻿$(document).ready(function() {
// hides the slickbox as soon as the DOM is ready
$('#text-one').hide();
$('#text-two').hide();
$('#text-three').hide();
$('#text-four').hide();
// toggles the slickbox on clicking the noted link  
$('#toggle-one').click(function() {
$('#text-one').slideToggle(600);
return false;
});
// toggles the slickbox on clicking the noted link  
$('#toggle-two').click(function() {
$('#text-two').slideToggle(600);
return false;
});
// toggles the slickbox on clicking the noted link  
$('#toggle-three').click(function() {
$('#text-three').slideToggle(600);
return false;
});
// toggles the slickbox on clicking the noted link  
$('#toggle-four').click(function() {
$('#text-four').slideToggle(600);
return false;
});
// hides the slickbox on clicking the noted link  
$('#toggle-one').click(function() {
$('#text-two').slideUp(500);
$('#text-three').slideUp(500);
$('#text-four').slideUp(500);
return false;
});
// hides the slickbox on clicking the noted link  
$('#toggle-two').click(function() {
$('#text-one').slideUp(500);
$('#text-three').slideUp(500);
$('#text-four').slideUp(500);
return false;
});
// hides the slickbox on clicking the noted link  
$('#toggle-three').click(function() {
$('#text-one').slideUp(500);
$('#text-two').slideUp(500);
$('#text-four').slideUp(500);
return false;
});
// hides the slickbox on clicking the noted link  
$('#toggle-four').click(function() {
$('#text-one').slideUp(500);
$('#text-two').slideUp(500);
$('#text-three').slideUp(500);
return false;
});
});

