$(document).ready(function() {

// disable right click context menu on all images
$("img").noContext();

$("p#ten-week-video").flash(
	{	src: '/flash/gemandnice_adatenweeks.swf',
		width: 710,
		height: 510 },
	{	version: 8 }
);

$("p#first-autumn").flash(
	{	src: '/flash/slideshow.firstautumn.swf',
		width: 640,
		height: 427 },
	{	version: 8 }
);

// font replacement
$.sifr({
	path: 'fonts/',
	width: 300,
	height: 40,
	color: '#ff0000'
});

// bitmap mouseover functions
$("img.navigation").mouseover(function() {
imgsrc = $(this).attr("src");
matches = imgsrc.match(/_over/);
if (!matches) {
	imgsrcON = imgsrc.replace(/.gif$/ig,"_over.gif");
	$(this).attr("src", imgsrcON);
}
});

$("img.navigation").mouseout(function() {
	$(this).attr("src", imgsrc);
});

$("img.navigation").each(function() {
	rollsrc = $(this).attr("src");
	rollON = rollsrc.replace(/.gif$/ig,"_over.gif");
	$("<img>").attr("src", rollON);
});

$("img.photo").each(function() {
	src = $(this).attr("src");
});

});
