
$(document).ready(function() {
	$(".gallery a").fancybox();
	$('a[target="_fancybox"]').fancybox();

	if($('.mainMedia .slider img').length>1) {
	    $('.mainMedia .slider').cycle({
			  fx: 'fade',
			  pager:  '.mainMedia-pager'
			 });
	}
	//$('a.media').media();
	// ie7-hack
	if ($.browser.msie && $.browser.version.substr(0,1)==7) {
		$('.nav ul').each(function() {
			$(this).css({
				'margin-left' : '-'+$(this).parent().width()
			})
		});
	}

	
	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'
					}
					);	
			}
		
		);
			
	}
	
});
