// JavaScript Document

var divname;

function viewToggle(divname) {
	$(document).ready(function() {
		$("#t1, #t2, #t3, #t4, #t5").fadeOut(100); //Hide all content
		$(divname).fadeIn();
	});
}

$(document).ready(function() {
	
	$("#content-wrapper").fadeIn();
	$("#homebtn").tipsy({
		gravity: "n", 
		opacity: 0.7,
	});
	$("#logo_menu a").corner("tr bl 7px"); //menu corner
	$("#maincontent, #maincontent2").corner("7px"); //menu corner
	
	
	$('#logo_menu a').css( {backgroundPosition: "-20px 35px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-20px 94px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(40px 35px)"}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "-20px 35px"})
			}})
		});
		
	$('#moving-background').css('background-position', '0px 0px').animate({backgroundPosition:"(-6400px 0px)"}, 1000000, 'linear');
	
	
});
   
