
$(document).ready(function() {
	$(".gallery a").fancybox();
	$('a[target="_fancybox"]').fancybox();
	$('a.media').media();
	$('.imgOver').each(function() {
		$(this).hover(function() {
			var o = $(this).attr('src');
			$(this).attr('src',$(this).attr('rel'));
			$(this).attr('rel',o);
		},function() {
			var o = $(this).attr('src');
			$(this).attr('src',$(this).attr('rel'));
			$(this).attr('rel',o);			
		});
	});
	if ($('#s3slider').attr('id')) {
		$('#s3slider').s3Slider({
			timeOut: 4000
		});
	}
	$('.nav li').click(function() {
		window.location.href = $('a',this).attr('href');
	});
	
	if ($.browser.msie && $.browser.version.substr(0, 1) < 7) {
	   $('.nav li span').after('<br/>');
	
  }
	
});



