
$(function(){

	/* PRELOADER */
	$(".menu_container img").addClass('out');
	$(".menu_container .how").append(
		$("<img src='"+siteroot+"images/how_a.gif' class='on'>").hide()
	);
	$(".menu_container .about").append(
		$("<img src='"+siteroot+"images/about_a.gif' class='on'>").hide()
	);
	$(".menu_container .contact").append(
		$("<img src='"+siteroot+"images/contact_a.gif' class='on'>").hide()
	);

	/* image change on hover */
	$(".how,.about,.contact").hover(function(){
		$("img.out", this).hide();
		$("img.on", this).show();
	}, function(){
		$("img.on", this).hide();
		$("img.out", this).show();
	});
	
	$("a").each(function(){
		if($(this).attr('target') == ''){
			$(this).attr('target', '_top');
		}
	});
	
	/* replace A-HREF to flv files with flowplayer */
	//console.log(siteroot+"swf/flowplayer-3.1.5.swf");
	//$("a[href*=.flv]").each(function(){
		//flowplayer('player', siteroot+"swf/flowplayer-3.1.5.swf")
	//});
});

