﻿$(document).ready(function(){
	$("#menu td").hover(
		function() {$(this).animate({backgroundColor: "#9E7BFF"}, 400)},
		function() {$(this).animate({backgroundColor: "#7A5DC7"}, 400)}
	);	
	/*$("#banner img").mouseenter(
		function() {$("#banner").animate({width: "+=100px"}), 1000, "expoin"}*/
	);
	$("#banner img").mouseout(
		function() {$("#banner").animate({width: "700px"}), 1000, "expoout"}
	);
	

	$("#hirek").hover(
		function() {$(this).text('Hírek')},
		function() {$(this).text('Novus')}
	);
	
	$("#zenekar").hover(
		function() {$(this).text('Zenekar')},
		function() {$(this).text('Conjux')}
	);
	
	$("#koncert").hover(
		function() {$(this).text('Koncertek')},
		function() {$(this).text('Concerto')}
	);

	$("#media").hover(
		function() {$(this).text('Média')},
		function() {$(this).text('Media')}
	);

	$("#klub").hover(
		function() {$(this).text('Klub')},
		function() {$(this).text('Stipes')}
	);

	$("#forum").hover(
		function() {$(this).text('Fórum')},
		function() {$(this).text('Dialogus')}
	);

	$("#kapcsolat").hover(
		function() {$(this).text('Kapcsolat')},
		function() {$(this).text('Contactus')}
	);

	$("#link").hover(
		function() {$(this).text('Linkek')},
		function() {$(this).text('Offero')}
	);
});
