$(document).ready(function () {
	
	$("div.link").hover(
	  function () {
	  	$(this).addClass("hover");
//	    $(this).css({
//	    	'backgroundColor': '#838383'
//	    });
	  },
	  function () {
	  	$(this).removeClass("hover");
//	    $(this).css({
//	    	'background': 'none'
//	    });
	  }
	);
	
	
	$("img.logo").hover(
	  function () {
	    $(this).css({
	    	'opacity': 1
	    });
	  },
	  function () {
	    $(this).css({
	    	'opacity': 0.5
	    });
	  }
	)
	.css('opacity', 0.5);
	
	
	$(function() {
		$('a[rel=light]').lightBox({fixedNavigation:true});
	});
	
	$("a[rel][rel!=light]").wTooltip({
		callBefore: function( tooltip, node, settings ) 
		{
			$(tooltip).html('<img src="'+$(node).attr('rel')+'"/>');
		},
		content: "&nbsp;",
	    className: "toolTip",
	    offsetY: 15,
    	offsetX: 15,
		fadeIn: 'fast'
	});

});



