$(document).ready(function(){

	var opac = '.75';
	$('.image-row img').animate({opacity: opac});
	$('.image-row img').hover(
		function() {
			$(this).animate({opacity: 1}, 400);
		},
		function() {
			$(this).animate({opacity: opac}, 500);
		}
	);

//This hides the inline content if JavaScript is supported.
	$('.hidden').css('display', 'none');
    $.fn.colorbox.settings.bgOpacity = "0.9";
    $("a[rel='colorbox-gallery']").colorbox({transition:"fade"});
    $(".colorbox").colorbox({transition:"none", fixedWidth:"75%",fixedHeight:"75%", initialWidth:"75%", initialHeight:"75%"});
    $("#inline").colorbox({fixedWidth:"50%", inline:true, href:"#inline_example"});
});
