$(document).ready(function(){
	// topmenu
	$('.topmenu > li').hover(function(){
		$(this).find('ul').stop(true, true);
		$(this).children('ul').fadeIn('fast');
		$(this).addClass('hover');
	},function(){
		$(this).children('ul').fadeOut('fast');
		$(this).removeClass('hover');
	})
	
	//$('.carousel').jcarousel();
	
	// ie forms
	if($.browser.msie & $.browser.version == 6){
		$('input[type="text"], input[type="password"]').addClass('text-ie');
	}


	
	// tabs
	$('.tabs li:first').addClass('current');
	$('.tabcontent').hide();
	$('.tabcontent:first').show();
	$('.tabs li').click(function(){
//$('div.wslide-wrap').find('ul').animate({ top: -2292+'px',left: 0+'px' }, 1000, 'fade' );
var shift=-573;
 var num = $(this).attr("id");
shift=shift*(num-1);
$('div.wslide-wrap').find('ul').animate({ opacity: 0 },1000, 'swing', function(){$(this).css('top',shift+'px').css('left',0+'px');$(this).animate({ opacity: 1 }, 1000, 'swing')} );

		if(!$(this).is('.current')){
			var indexNumber = $('li', $(this).parent('ul')).index(this);
			$(this).parent('ul').find('li').removeClass('current');
			$(this).parent('ul').next('.tabcontents').find('.tabcontent').hide();
			$(this).addClass('current');
			$($('.tabcontent').get(indexNumber)).fadeIn();
		}
//$('div.wslide-wrap').find('ul').animate({ top: -2292+'px',left: 0+'px' }, 1000, 'swing' );

	})
})
