﻿$(function(){
	//搜索
	$('#search li').click(function(){
		$(this).active().find('a').blur();
		return false;
	});
	
	//登陆
	$('#userloginform').form({
		type : 'ajax',
		onSubmit : function(){
			if(!this.data('userName')) {
				alert('请输入用户名');
				this.getControl('userName').focus();
				return false;
			} else if (!this.data('userPwd')) {
				alert('请输入密码');
				this.getControl('userPwd').focus();
				return false;
			}
		}
	});
	//搜索
	$('.mustLogin').live('click',function(){
		if (confirm('该功能需要登陆才能使用,是否立即登陆?')){
			window.location.href = U('user/login');
		}
		return false;
	});
	if ($('#products_marquee').length) {
	//	$('#notice').marquee({direction:'left',loop:false});
		$('#products_marquee').marquee({direction:'top',speed:1});
		$('#company_marquee').marquee({direction:'left'});
	}
	$('ul[tab] li').click(function(){
		$(this).active();
		$('div.tab1').eq($(this).index()).show().siblings().hide();
		return false;
	});
	
});

