$(function()
{
	//Colorbox
	$("a[rel='gallery']").colorbox({opacity: 0.6});
	/*
	$('#lioweb-files a[href$=".jpg"]').colorbox({
		'opacity': 0.6,
		'maxWidth': 500
	});*/
	
	
	//Menu
	$('.overable').hover(function(){
		$(this).addClass('over');
	},function(){
		$(this).removeClass('over');
	});
	
	//PNGFix - Must be after calling rollover, at the end
	$.ifixpng('orchestra/libs/jQuery/ifixpng/images/pixel.gif');
	$('.png').ifixpng();
});

