/*background move*/
function scrollBar(){
    //$('#header').css("background-position","0px 0px").animate({backgroundPosition: "-2247px 0px"},75000,"linear",scrollBar);
}

$(function(){
   scrollBar();
});

/*
$(document).ready(function(){
    
    $(document).pngFix();  //png fix
	
	$(".menuprin a").append("<em></em>");
	$(".menuprin a").hover(function() {
		var hoverText = $(this).attr("title");
		if(hoverText != ""){
			$(this).find("em").animate({opacity: "show", top: "-30"}, "slow");
			$(this).find("em").text(hoverText);
		}
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-45"}, "fast");
	});
});

function pageOut(){
    
    $("#menu").fadeIn('slow',function(){
      $(this).animate({'top': '-=20px'},'slow');
    });
        
    $('body').fadeOut(800);
}
*/
