j(function() {
	
	j(".search-select").uniform();
	
	j('.cart-short-info').click(function() {
		j('.cart-long-info').slideToggle();
	});
	
	j('.arrow-up').click(function() {
		scrollTo(0);
	});
	
	j('.slider-tabs').tabs();
		
});

function scrollTo(pos) {
	j("html:not(:animated),body:not(:animated)").animate({ scrollTop: pos}, 500 );
}

function setCookie(c_name,value,expiredays) {
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value)+
	';path=/'+
	((expiredays==null) ? "" : ";expires="+exdate.toUTCString());
}
