$(document).ready(function() { 
    // start slideshow 
    $('#fade').cycle({ 
        fx:      'fade', 
        timeout:  4800, 	
		speedIn:  200, 
    	speedOut: 200, 
    	easeIn:  null, 
    	easeOut: null, 
    	delay:    0 
    }); 
	
	$('#slickbox2').hide();

	$('a#slick-toggle').click(function() {
	$('#slickbox').hide();
    $('#slickbox2').toggle(300);
    return false;
  	});
	$('a#slick-toggle2').click(function() {
	$('#slickbox2').hide();
    $('#slickbox').toggle(300);
    return false;
  	});
	
	$(window).load(function () {
	
		$('.newsitems div').hide();
		$('.newsitems h5').after("<a href='#' class='newslink'>show this item..</a>");
		
		$('.newsitems a').click(function() {
		
		if($(this).html()=="show this item.."){
		$(this).html("close this item..");
		}else{
		$(this).html("show this item..");	
		}
		$(this).next('div').toggle();
		return false;
		});
	});
	
	$('#newsbox2').hide();
	
	$('a#newsbox1link2').click(function() {
	$('#newsbox2').toggle(200);							   
	return false;
	});
	$('#newsbox3').hide();
	
	$('a#newsbox1link3').click(function() {
	$('#newsbox3').toggle(200);							   
	return false;
	});
	$('#newsbox4').hide();
	
	$('a#newsbox1link4').click(function() {
	$('#newsbox4').toggle(200);							   
	return false;
	});
}); 








