
$(document).ready(function(){
	// szolgaltatas tabla nyitogatos
	
	$("#csomagSzolgaltatasok dd").hide();
	
	$("#csomagSzolgaltatasok dt").toggle(function(){		
		$(this).next().show('1000');
	}, function(){
		$(this).next().hide('1000');
	});
	
	$(function() {
		$( "#tabs" ).tabs({
			fx: {
				opacity: 'toggle',
				duration: 'fast'
			}
		});
	});

	if ($.browser.msie  && parseInt($.browser.version) == 8) {
		$('.kartya_over').css({ 'background-color': '#3D3D3D'});
	}
	
	$('.kartya_over').css({ 'opacity': 0 });
	
	$('a.kis_kartya').hover(function(){
		$('.kartya_over', this).stop().animate({
		    opacity: 1,
		    width: '192'    
		  	}, 600
		);
	},function(){
		$('.kartya_over', this).stop().animate({
		    opacity: 0,
		    width: '1'	    
		  	}, 400
		);
	});

	//uj sablon animacio 
	if ($.browser.msie  && parseInt($.browser.version) == 7) {
	} else {
		$('#banner h1').css({'opacity':'0'});
		$('#banner h1').animate({'opacity':'1'}, 2000);	
		$('#banner .domain_nev').animate({'left':'0'}, 800);	
	}
	

});
