  var $j = jQuery.noConflict();
  
  $j(document).ready(function() {
    $j("a.cbme").colorbox({maxWidth:"95%", maxHeight:"95%"});    
    $j(".gallery-icon a").colorbox({rel:"attach", maxWidth:"95%", maxHeight:"95%"});    
    $j('.menu').superfish(); 
    $j("nav#navbar").live("mouseenter", function(e) {
      $j("img#headwarp").stop(true,true).fadeIn(600);
    });
    $j("nav#navbar").live("mouseleave", function(e) {
      $j("img#headwarp").fadeOut(600);
    });
    $j("footer#sitefooter").live("mouseenter", function(e) {
      $j("div#footer_meta").stop(true,true).fadeIn(600);
    });
    $j("footer#sitefooter").live("mouseleave", function(e) {
      $j("div#footer_meta").fadeOut(600);
    });
    $j('.bg_view img, .fb_album_cover img, div.lyt_home img').hover(function() {
		$j(this).stop().animate({"opacity": ".6"}, 200);
	}, function() {
		$j(this).stop().animate({"opacity": "1"}, 200);
	});
  });
