(function($) { 
 	$(function() {
 	
 	
	// hides the slickbox as soon as the DOM is ready
	$('#slickbox1').hide();
 
  	// toggles the slickbox "1" 
	$('#slick-toggle1').click(function() {
	$('#slickbox1').animate({
    "height": "toggle", "opacity": "toggle"}, "slow" );
    return false;
	});
  
 	// toggles the slickbox "2" 
 	$('#slick-toggle2').click(function() {
    $('#slickbox2').animate({
    "height": "toggle", "opacity": "toggle"}, 100 );
    return false;
  	});
  	
  	// toggles the slickbox "3" 
 	$('#slick-toggle3').click(function() {
    $('#slickbox3').animate({
    "height": "toggle", "opacity": "toggle"}, 100 );
    return false;
  	});
  	
  	// toggles the slickbox "4" 
 	$('#slick-toggle4').click(function() {
    $('#slickbox4').animate({
    "height": "toggle", "opacity": "toggle"}, 100 );
    return false;
  	});

  	// toggles the slickbox "5" 
 	$('#slick-toggle5').click(function() {
    $('#slickbox5').animate({
    "height": "toggle", "opacity": "toggle"}, 100 );
    return false;
  	});
  	
});
})(jQuery);
