
	$(function(){
		$(".new_products_middle").each(function(){
			//$(this).css("top",$(".main3_ul_p").height()/2-$(this).height()/2)
			//.css("left",($(".main3_ul_p").width()/2-$(this).width()/2)+'px');
		});
		
		
	});
	
	
$(function(){
	$(".special_offer_text").each(function(){
		_max = 90;
		_text = $(this).text().substr(0,_max);
		if (_text.length == _max) {
			while (1) {
				if (_text.substr(_max-1,1)!=' ') {
					_max--;
				} else {
					_text=_text.substr(0,_max)+'...';
					break;
				}
			}
		}
		
		$(this).text(_text);
	});

	$(".product_list_title").each(function(){
		_max = 50;
		_text = $(this).text().substr(0,_max);
		if (_text.length == _max) {
			while (1) {
				if (_text.substr(_max-1,1)!=' ') {
					_max--;
				} else {
					_text=_text.substr(0,_max)+'...';
					break;
				}
			}
		}
		
		$(this).text(_text);
	});
});
