$(function() {
	$('#checkmore').find('li:nth-child(3n)').addClass('no-pd');
	$('#sliders .right').click(function(){
		if ($('#slider-content').find('li#active').is('.last'))
		{
			$('#slider-content').find('li#active').removeAttr('id')
			$('#slider-content').find('.first').attr('id', 'active')
		}
		else
		{
			$('#slider-content').find('li#active').not('.last').removeAttr('id').next().attr('id','active')
		}
	});
	$('#sliders .left').click(function(){
		if ($('#slider-content').find('li#active').is('.first'))
		{
			$('#slider-content').find('li#active').removeAttr('id')
			$('#slider-content').find('.last').attr('id', 'active')
		}
		else
		{
			$('#slider-content').find('li#active').not('.first').removeAttr('id').prev().attr('id','active')
		}
	});
	$('#search input:text, input:password, #openid_url').each(function(){
		var iV = $(this).val()
		$(this).focus(function(){ if($(this).val() == iV) $(this).attr('value','')})
			   .blur(function(){ if($(this).val() == '') $(this).attr('value',iV)})
	});
	
	$('.gallery li').click(function(){
		var iV = $(this).find('img').attr('rel')
		$('#imgBig img').attr('src',iV)
		$('#imgBig').hide().show()
	});
	
	

	//$('#detail-wrap.steps').find('.imgBig-wrap .step-box a').addClass("kkt");
	//$('#detail-wrap.steps').find('.imgBig-wrap .step-box a').hover(function(){ alert("ok");$(this).next('i.box-small').show()},function(){(this).next('i.box-small').hide()})
	//$('#detail-wrap.steps').find('#imgBig .box-big a').hover(function(){ $('i.box-big').show()},function(){$('i.box-big').hide()})
	
});
