
$(document).ready(function() {
	var C = {
		overlayOpacity : 0.8
	};
	
	$(".gallery a").fancybox(C);
	if($('.Ierror')[0]) {
		$('html, body').animate({scrollTop:$('.Ierror:eq(0)').offset().top}, 'fast',
			function() {
					$.fancybox(
					'<h2>'+$('h1').text()+'</h2><p style="color:red">'+$('legend').text()+'</p>',
					{
			        		'autoDimensions'	: false,
						'width'         		: 350,
						'height'        		: 'auto',
						'transitionIn'		: 'none',
						'transitionOut'		: 'none'
					}
					);	
			}
		
		);
			
	}
	$('a[target="_fancybox"],a[rel="group"]').fancybox(C);
	$('a.media').media();
    $('.slider').cycle({
		  fx: 'fade'
		 });
});
