jQuery(document).ready(function()
{
    jQuery("#foto").cycle({
        fx:    'shuffle'
    });
    jQuery("#content").children().children(".wijkcontent").hide();

  //toggle the componenet with class msg_body
  var hoverInFunction = function()
  {
    var element = jQuery(this);
    element.animate({
        width: '385px',
        height: '385px'
    }, "slow");
    element.children(".wijkcontent").show('slow');

  };
  var hoverOutFunction = function()
  {
    var element = jQuery(this);
    element.children(".wijkcontent").hide();
    element.animate({
        width: '113px',
        height: '113px'
    }, "slow");

  };
  jQuery("#content").children().hover(hoverInFunction,hoverOutFunction);

});

