$(document).ready(function() {
	
	$('.ngg-gallery-thumbnail a').lightBox({fixedNavigation:true});

	
	$('.content_box_content').each(function() {
		var pThis = $(this);
		var pID = $(this).attr('id');
		var pImages = pThis.find('a.lightbox');
		pImages.lightBox();
		//pImages.lightBox();
		//pImages.each(function() {
		//	var imageRel = $(this).attr('rel');
				
		//});
	});
	
	$('.sponsorsCycle').cycle();
	
	$('.iconOnly a').attr('target','');
	
	$('.iconOnly a').click(function(e) {
		e.preventDefault();
		var url = $(this).attr('href');
		
		FbWindow = window.open(url, "Share", "width=500,height=350");
		FBWindow.focus();
	});
	

	$('.sponsor_list li').hover(function(){
		$(this).children('.colored').fadeIn('fast');
	}, function() {
		$(this).children('.colored').fadeOut('slow');	
	});
	
});

// function grayOut() {
// 	$('.grayImg').each(function(i) {
// 		var img = new Image();
// 				img.onload = function() {
// 					Pixastic.process(img,"hsl",{hue:100,saturation:-100,lightness:40});
// 				}
// 		$('#gray'+i).append(img);
// 		img.src = $('.sponsor_list').children('li.g'+i).find('img').attr('src');
// 	});

	
