///-- Cufon BEGIN --///	
Cufon.replace('h1, h2', { fontFamily: 'Myriad Pro', hover:true });
///-- Cufon END --/// 

/////μενώ TOP/////
jQuery(function () { 
			jQuery('#nav li span').css('opacity','0');
			jQuery('.anim span').css('opacity','0');
			jQuery(".tarifBlock .list-wrap table tr td").last().css("width","102px");
    jQuery('#nav li').hover(
        function () {
            //show its submenu			
			jQuery('span', this).stop().animate({opacity: 1}, 500);
			//jQuery('a:first', this).addClass('activeLI');
            jQuery('ul', this).slideDown(500);
			return false;
        }, 
        function () {
            //hide its submenu
			jQuery('span', this).stop().animate({opacity: 0}, 500);
			//jQuery('a:first', this).removeClass('activeLI');
            jQuery('ul', this).slideUp(400);
        }
    );
	
	jQuery('.anim').hover(
        function () {
            //show its			
			jQuery('span', this).stop().animate({opacity: 1}, 300);
        }, 
        function () {
            //hide its
			jQuery('span', this).stop().animate({opacity: 0}, 300);
        }
    );
///---scrollMenu	
	jQuery('.scrollMenuClose').click(function() {	
			jQuery(this).hide();
			jQuery('#scrollMenu').stop().animate({width:'30px'}, 300);
			jQuery('.scrollMenuOpen').show();
			return false;
        });
		jQuery('.scrollMenuOpen').click(function() {	
			jQuery(this).hide();
			jQuery('#scrollMenu').stop().animate({width:'675px'}, 300);
			jQuery('.scrollMenuClose').show();
			return false;
        });
		jQuery('.back_toTop').click(function() {	
			jQuery('#scrollMenu').css('width','675px');
			jQuery('.scrollMenuOpen').hide();
			jQuery('.scrollMenuClose').show();
			return false;
        });
	
});

<!--

function scrollWindow()
{
window.scrollTo(100,0)
}
//-->

///---TABS
jQuery(function () {
				//Slide up and down on click 
			jQuery('.tarifWrapper .icos').click(function(){
			jQuery(this).next('div.tarifBlock').toggleClass("display");
			jQuery('.pl_minus', this).toggleClass("minus");
			return false;
			}); 
    			//tabs 
            //jQuery(".tarifBlock").organicTabs({"speed": 200}); 
						jQuery("ul.navT").tabs("div.list-wrap > div", {effect: 'ajax'});
});
////


