jQuery(document).ready(function(){

  jQuery("ul.multimedia-portfolio").multimedia_portfolio({width: 632}); //728

  jQuery.fn.fadeToggle = function(speed, easing, callback) {
    return this.animate({opacity: 'toggle'}, speed, easing, callback);  
  };

  
  setInterval ( function() {jQuery('#logo').fadeToggle('slow'); }, 2000 );

  

  jQuery('.mainmenu1 li span a').hover(function() {
    $(this).css({opacity: 0, visibility: "visible"});
    $(this).animate({opacity: 1});
  }, function() {});
  
  
  
  
  /*
  $('img[alt*="pop"]').each(function() {
    var link = $(this).attr('src');
    //alert(link);
    $(this).wrap('<a href="' + link + '" class="popups"></a>');
  });
  */
  //on page load call tb_init
	//tb_init('a.popups');//pass where to apply thickbox
  
  /*
  $('.portfolio-container')
    .wrap('<div class="my-gallery" />')
    .append('<div class="hl"><a href="#"><img src="/s/p/theme1/arr-left.jpg" /></a></div>')
    .append('<div class="hr"><a href="#"><img src="/s/p/theme1/arr-right.jpg" /></a></div>');
  */
});

