$(document).ready(function()
{
	/*$(document).pngFix();
    
	$(".program tr:nth-child(odd) td").css('backgroundColor', '#fcdbdb');

	var so = new SWFObject("swf/logo.swf", "Logo", "500", "100", "7", "#fff");
	so.write("logo");*/
	$('.opinion').corner('5px');
	$('.articles').corner('5px');
	$('.request').corner('5px');
	$('.corner').corner('5px');
	
	$('#bed1 span').click(function(){$('#bed1').fadeOut(1500);$('#bed2').fadeIn(1500);});
	$('#bed2 span').click(function(){$('#bed1').fadeIn(1500);$('#bed2').fadeOut(1500);});
	
	$('.video').each(function(){
		$(this).click(function(){
			window.open($(this).attr('href'),'_blank','menubar=no,status=no,titlebar=no,toolbar=no,width=425,height=350,top=150,left=200');
			return false;
		});
	});
	
	$('.mapf').each(function(){
		$(this).click(function(){
			window.open($(this).attr('href'),'_blank','menubar=no,status=no,titlebar=no,toolbar=no,top=150,left=200');
			return false;
		});
	});
	
$('form:not(.noAjax)').each(function(){
		var t = $(this);
		t.submit(function(){
			
			t.ajaxSubmit(function(data){
				if(data.length==0)
				{
					t.attr('action','/mail/send.php');
					t[0].submit();
				}
				else
					alert(data);

				return false;
			});
			return false;
		});

	})
	

});

