$(document).ready(function(){
	
	$(".images.small a").click(function(e){
		e.preventDefault();
		$(".images.big img").attr('src',$(this).attr('href'));
		$(".images.big").show();
	});
	
	$(".images.small a.info").click(function(e){
		e.preventDefault();
		$(".images.big").hide();
	});
	
	
	$("table.second:not(.show)").hide();
	
	$(".navi li").mouseover(function(){
		$("table.second").hide();
		$("table.second",this).show();
	})
	.mouseout(function(){
		$("table.second").hide();
		
	});
	
	
	if($.flash.available)
		$('.footer').flash({  
			id: 'FlashObject',
			swf: swf,
			width: 1000,
			height: 25,
			wmode: 'transparent',
			allowscriptaccess:'always',
			flashvars:{
				'text1': $('.flashtext1').text(),
				'text2': $('.flashtext2').text()
			}
		});		
	
	
	
});
