var slider_width = 702;
var slider_height = 202;
var cur_pos = 0;
var move_speed = 4;
var delay = 60;
var delay2 = 5000;
var timeout;

var preloadFlag = false;
function preloadImage(src)
{
	if (document.images) {
		rslt = new Image();
		rslt.src = src;
		return rslt;
	}
}

function createImage(src, href, alt)
{
	this.src = src;
	this.href = href;
	this.alt = alt;
}

function cat_create(name, src, href)
{
	this.name = name;
	this.src  = src;
	this.href = href;
}

function featured_create(name, src, href, price)
{
	this.name = name;
	this.src  = src;
	this.href = href;
	this.price = price;
}

function new_all_products(array, name, href)
{
	this.array	= array;
	this.name 	= name;
    this.href 	= href;
}

$(document).ready(function(){

	$("ul.subnav").parent().append(""); //Remove the “span tags”

	$("ul.topnav li a.trigger").mouseover(function() { 
		$(this).parent().find("ul.subnav").stop().slideDown('fast').show('slow', function(){
			$(this).height("auto");
		}); 

		$(this).parent().hover(function() {
		}, function(){	
			$(this).parent().find("ul.subnav").stop().slideUp('slow'); 
		});

		}).hover(function() { 
			$(this).addClass("subhover"); 
		}, function(){	
			$(this).removeClass("subhover"); 
	});

	var $img_href = '';
		if( $('#location').length != 0 ) 
			{ $img_href = $('#location').val()}
	
	var $large_image = "<div align='center' style='width: 100%;'><img src=" + $img_href + "></div>";
	var $header_text = "123";
	if ($('#header_text').length != 0)
	{
		$header_text = document.getElementById('header_text').innerHTML;
	}
	
	var $dialog = $('<div></div>')
			.html($large_image)
			.dialog({
				autoOpen: false,
				title: $header_text,
				modal: true,
				draggable: false,
				resizable: true,
				width: 470
			});

		$('#opener').click(function() {
			$dialog.dialog('open');
		});
});


function doOnload()
{
	var slides = '<div id="slide-runner" style="width:' + (img.length+1)*slider_width + 'px; z-index: 1;">'; 
	var navs   = '';
	
	for (var i=0; i < img.length; i++)
	{
		slides = slides + '<a href="' + img[i].href + '"><img id="slide' + (i+1); 
		slides = slides + '" src="' + img[i].src + '" class="slide" alt="'; 
		slides = slides + img[i].alt + '" style="left: ' + i*slider_width + 'px; z-index: 10"/></a>';
		
		navs = navs + '<a id="link' + i +'" href="javascript:slide(\'NULL\',' + (-1)*i*slider_width+ ');">' + (i+1) +'</a>';
	}
	
	slides = slides + '<a href="' + img[0].href + '"><img id="slide' + (img.length+1); 
	slides = slides + '" src="' + img[0].src + '" class="slide" alt="'; 
	slides = slides + img[0].alt + '" style="left: ' + img.length*slider_width + 'px;"/></a>';
	
	div = slides + '</div><div id="slide-controls"><p id="slide-nav">' + navs +'</p></div>'; 
	document.getElementById("slide-holder").style.display = 'none';
	document.getElementById("slide-holder").innerHTML = div;
	
	setTimeout("fade('slide-holder', 0.05)", 1500);
}

function setBg(idx)
{
	for (var i=0; i<img.length; i++)
	{
		if (i==idx)
		{
			document.getElementById("link" + i).style.backgroundColor="#f9f9f9";
			document.getElementById("link" + i).style.color = "#900000";
			document.getElementById("link" + i).style.border = "1px solid #313131";
		}
		else
		{
			document.getElementById("link" + i).style.backgroundColor="#313131";
			document.getElementById("link" + i).style.color = "#FFFFFF";
			document.getElementById("link" + i).style.border = "1px solid #000000";
		}
	}
}

function fade(image_id_fadein, i)	
{
	var fade_speed	= 0.04;

	i= parseFloat(i);
	image_id_fadein  = document.getElementById(image_id_fadein);
	setBg(0);
	setOpacity(image_id_fadein, i); 
	
	if ( i < 0.99 && i > 0.01)
	{
		i = i + fade_speed;
		setTimeout("fade('" + image_id_fadein.id + "', " + i + ")", 50); 
	} 
	else
	{
		setTimeout("slide(0, -702)", delay2);
	}
}

function setOpacity(obj, value)
{
	obj.style.display = 'block';
	if(value>.99) {
			value = 1;
			return;
		}
	obj.style.opacity = value;
	obj.style.MozOpacity = value; 
	obj.style.filter = "alpha(opacity=" + (value*100) + ")";
}

function slide(pos1, pos2)
{	

var	cur_pos; 
var	tar_pos = parseInt(pos2);

if (pos1 == 'NULL')
{
	clearTimeout(timeout);
	cur_pos = parseInt(document.getElementById("slide-runner").style.left);
}
else
{
	cur_pos = parseInt(pos1);
}

	if (cur_pos > tar_pos)
	{
		next = tar_pos - slider_width;
		
		if( Math.abs(tar_pos - cur_pos) <= 3)
		{
			document.getElementById("slide-runner").style.left = tar_pos + 'px';
			timeout = setTimeout("slide(" + tar_pos + "," + next + ")", delay2);
			if ( tar_pos == (img.length)*(-1)*slider_width )
			{
				document.getElementById("slide-runner").style.left = 0 + 'px';
				tar_pos = 0;
				next = (-1)*slider_width;
				clearTimeout(timeout);
				timeout = setTimeout("slide(" + tar_pos + "," + next + ")", delay2);
			}
		}
		else
		{
			setBg(parseInt(tar_pos*(-1)/slider_width));
			if (tar_pos == (img.length)*(-1)*slider_width)
			{
				setBg(0);
			}
			document.getElementById("slide-runner").style.left = parseInt(cur_pos - (cur_pos - tar_pos)/move_speed) + 'px';
			timeout = setTimeout("slide(" + ( parseInt(cur_pos - (cur_pos - tar_pos)/move_speed) ) + "," + tar_pos + ")", delay);
		}
	}
	else
	{
		next = tar_pos - slider_width; 
		if( Math.abs(cur_pos - tar_pos) <= 3)
		{
			document.getElementById("slide-runner").style.left = tar_pos + 'px';
			timeout = setTimeout("slide(" + tar_pos + "," + next + ")", delay2);
		}
		else
		{
			setBg(parseInt(tar_pos*(-1)/slider_width));
			document.getElementById("slide-runner").style.left =  parseInt(cur_pos +(tar_pos - cur_pos)/move_speed) + 'px';
			timeout = setTimeout( "slide(" + ( parseInt(cur_pos +(tar_pos - cur_pos)/move_speed) ) + "," + tar_pos + ")", delay);
		}
	}
}

function setBreadCrumb()
{
	var apparelElement 	= document.getElementById("apparel_bread");
	var promoElement 	= document.getElementById("promo_bread");
	var embrElement 	= document.getElementById("embroidery_bread");
	var screenElement 	= document.getElementById("screen_bread");
	var breadElement 	= document.getElementById("breadcrumbs");
	
	if (apparelElement)
	{
		apparelElement.innerHTML = '&nbsp;&raquo;&nbsp;<a href="cart.php?page=promotional_products" class="NavigationPath">Promotional Products</a>&nbsp;&raquo;&nbsp;<a href="cart.php?page=apparel" class="NavigationPath">Apparel</a>' + apparelElement.innerHTML;
	}
	
	if (promoElement)
	{
		promoElement.innerHTML = '&nbsp;&raquo;&nbsp;<a href="cart.php?page=promotional_products" class="NavigationPath">Promotional Products</a>' + promoElement.innerHTML;
	}
	
	if (embrElement)
	{
		embrElement.innerHTML = '&nbsp;&raquo;&nbsp;<a href="cart.php?page=embroidery_services" class="NavigationPath">Embroidery Services</a>' + embrElement.innerHTML;
	}
	
	if (screenElement)
	{
		screenElement.innerHTML = '&nbsp;&raquo;&nbsp;<a href="cart.php?page=screen_printing_services" class="NavigationPath">Screen Printing Services</a>' + screenElement.innerHTML;
	}
	
	breadElement.style.visibility = 'visible';
}

function createPage(arr, all_prod)
{
var button 			= "skins/default/en/images/view_products.gif";
var cells 			= 4;
var rows;
var num;
var text;
var all_link;
var all_text;
var array = arr;

if (all_prod)
{
	all_text = array[array.length - 1].name;
	all_link = array[array.length - 1].href;
	array.pop();
}

num 			= array.length;
rows 			= Math.ceil(num/cells);

text = 		  '<table width="702" border="0" cellspacing="0" cellpadding="0" class="featured_list">';
text = text + '  <tr>';
text = text + '    <td><img src="images/spacer.gif" width="160" height="1" /></td>';
text = text + '    <td><img src="images/spacer.gif" width="18" height="1" /></td>';
text = text + '    <td><img src="images/spacer.gif" width="161" height="1" /></td>';
text = text + '    <td><img src="images/spacer.gif" width="18" height="1" /></td>';
text = text + '    <td><img src="images/spacer.gif" width="160" height="1" /></td>';
text = text + '    <td><img src="images/spacer.gif" width="18" height="1" /></td>';
text = text + '    <td><img src="images/spacer.gif" width="161" height="1" /></td>';
text = text + '  </tr>';
text = text + '  <tr>';

var url = document.location.href;
var index = url.indexOf("page=");
if (index < 0)
{
	text = text + '<td colspan="7"><img src="' + header_image + '" width="702" height="123" />';
}
else
{
	var page = url.substring(index + 5);
	if (page == 'apparel' || page == 'promotional_products')
	{
		text = text + '<td colspan="7" style="height: 202px;" valign="top"><div id="slide-holder" style="z-index: 0"></div>';
	}
	else
	{
		text = text + '<td colspan="7"><img src="' + header_image + '" width="702" height="123" />';
	}
}
text = text + '    </td>';
text = text + '  </tr>';
text = text + '  <tr>';
text = text + '    <td colspan="7">&nbsp;</td>';
text = text + '  </tr>';
text = text + '  <tr>';
text = text + '    <td colspan="7" style="color: #FFFFFF; font-size: 20px; height: 35px; background-color: #494949; padding: 0px 0px 0px 20px;">';
text = text + header + '</td>';
text = text + '  </tr>';
text = text + '  <tr>';
text = text + '    <td colspan="7">&nbsp;</td>';
text = text + '  </tr>';

	for ( var i=0; i<rows; i++)
	{
		text = text + '<tr>';
		for (var j=0; j<cells; j++)
		{
			text = text + '<td class="hat" align="center"><div class="outbound"><div class="inbound">';
			text = text + '<a href="' + array[i*cells+j].href + '"><img src="' + images_folder + array[i*cells+j].src;
			text = text + '" border="0" /></a></div></div></td>';
			
			if (j < (cells-1))
			{
				text = text + '<td>&nbsp;</td>';
			}
		}
		text = text + '</tr>'; //end of first row
		
		
		text = text + '<tr>';
		for (var j=0; j<cells; j++)
		{
			text = text + '<td class="bottom"><a href="' + array[i*cells+j].href + '">' + array[i*cells+j].name + '</a></td>';
			
			if (j < (cells-1))
			{
				text = text + '<td>&nbsp;</td>';
			}
		}
		text = text + '</tr>'; //end of second row
		
		text = text + '<tr>';
		for (var j=0; j<cells; j++)
		{
			text = text + '<td class="bottom2"><a href="' + array[i*cells+j].href + '"><img src="' + button;
			text = text + '" width="95" height="27" border="0" /></a></td>';
			
			if (j < (cells-1))
			{
				text = text + '<td>&nbsp;</td>';
			}
		}
		text = text + '</tr><tr><td colspan="7">&nbsp;</td></tr>'; //end of third row	
	}
	text = text + '</table>';
	
	if (all_prod)
	{
		text = text + 	'<div align="right" style="display:block; margin: 15px;"><a class="about_red_header" href="' +
						all_link + '">' +  all_text + '</a></div>';
	}

return text;
}

function addText(text_var)
{
	var el = document.getElementById("additional_text");
	if (text_var.length > 0)
	{
		el.innerHTML = text_var;
		el.style.display = "block"; 
	}
	else
	{
		el.style.display = "none";
	}
}

function displayAdditionalProductText()
{
	var url = document.location.href;
	var index = url.indexOf("category_id=");
	var category = url.substring(index + 12);  
	if (category == '100' || category == '101' || category == '103' ||
			category == '102' || category == '104' || category == '105' ||
			category == '106')
	{
		try {
			document.getElementById("add_text").style.display = "none";
		}
		catch(err) {}
	}
	else
	{
		try {
			document.getElementById("add_text").style.display = "table-cell";
		}
		catch(err) {}
	}
}

function showApparelText(varname)
{
	if ((varname) && (varname !='undefined')) {
		try {
			document.getElementById('additional_text').innerHTML = varname;
		}
		catch (err)
		{
			setTimeout('showApparelText(' + varname + ')', 200);
		}
	}
}

function showApparelBanner()
{
	var category;
	var img;
	var url = document.location.href;
	var index = url.indexOf("category_id=");
	var images_folder 	= "skins/default/en/images/categories/apparel/";
	
	if (index > -1)
	{
		category = url.substring(index + 12);	
		text = "<img src='" + images_folder;
		
		switch(category)
		{
			case '1':
			  img = 'accessories'; 
			  showApparelText('accessories');
			  break;
			case '9':
			  img = 'activewear';
			  showApparelText('activewear');
			  break;
			case '2':
			  img = 'babies';
			  showApparelText('babies');
			  break;
			case '10':
			  img = 'dress_shirts';
			  showApparelText('dress_shirts');
			  break;
			case '3':
			  img = 'fleece';
			  showApparelText('fleece');
			  break;
			case '4':
			  img = 'headwear';
			  showApparelText('headwear');
			  break;
			case '5':
			  img = 'ladies_apparel';
			  showApparelText('ladies_apparel');
			  break;
			case '98':
			  img = 'eco_friendly';
			  showApparelText('eco_friendly2');
			  break;
			case '6':
			  img = 'outerwear';
			  showApparelText('outerwear');
			  break;
			case '7':
			  img = 'polo_shirts';
			  showApparelText('polo_shirts');
			  break;
			case '8':
			  img = 't_shirts';
			  showApparelText('t_shirts');
			  break;
			case '14':
			  img = 'workwear';
			  showApparelText('workwear');
			  break;
			case '11':
			  img = 'dent_pro';
			  break;
			case '99':
			  img = 'novato';
			  break;
			case '86':
			  img = 'pm_dwts';
			  break;
			default:
			  img = '';
		}
		
		text = text + img + "_header.jpg' style='margin: 2px 0px 15px 0px;'>";
		document.write(text); 
	}
	else
	{
		document.getElementById("first_row").style.display = "none";
	}
}

function validateSubmitForm(form)
{
	var err 	= "";
	var fname 	= document.getElementById("fname").value;
	var lname 	= document.getElementById("lname").value;
	var phone 	= document.getElementById("phone").value;
	var email 	= document.getElementById("email").value;
	var address = document.getElementById("address").value;
	var city 	= document.getElementById("city").value;
	var index 	= document.getElementById("hear").selectedIndex;
	var hear 	= document.getElementById("hear").options[index].value; 
	
	if (fname.length < 1) { err = err + 'Please enter your first name \n'; }
	if (lname.length < 1) { err = err + 'Please enter your last name \n'; }
	if (phone.length < 1) { err = err + 'Please enter your phone \n'; }
	if (email.length < 1) 
	{ 
		err = err + 'Please enter your email \n'; 
	}
	else
	{
		if ( email.indexOf('@') < 0 || email.indexOf('.') < 0 )
		{
			err = err + 'Please enter a correct email address';
		}
	}
	if (address.length < 1) { err = err + 'Please enter your address \n'; }
	if (city.length < 1) { err = err + 'Please enter your city, state and zip code \n'; }
	if (hear.length < 1) { err = err + 'Please tell us where you heard about us \n'; }
	if (err.length != '')
	{
		alert(err);
		return false;
	}
	return true;
}

function bottomSectionCreate()
{
	var url = document.location.href; 
	
	if (url.indexOf('apparel') > -1 )
	{
		document.write(apparel);
	}
	
	if (url.indexOf('promotional_products') > -1 )
	{
		document.write(promo_prod);
	}
	
	if (url.indexOf('automotive') > -1 )
	{
		document.write(automotive);
	}
	
	if (url.indexOf('badges___lanyards') > -1 )
	{
		document.write(badges);
	}
	
	if (url.indexOf('eco_friendly_products') > -1 )
	{
		document.write(eco_friendly);
	}
	
	if (url.indexOf('calendars') > -1 )
	{
		document.write(calendars);
	}
	
	if (url.indexOf('bags') > -1 )
	{
		document.write(bags);
	}
	
	if (url.indexOf('corporate_gifts') > -1 )
	{
		document.write(corporate_gifts);
	}
	
	if (url.indexOf('made_in_usa') > -1 )
	{
		document.write(made_in_usa);
	}
	
	if (url.indexOf('school__spirit_items') > -1 )
	{
		document.write(school);
	}
	
	if (url.indexOf('giveaways_under__1_00') > -1 )
	{
		document.write(giveaways1);
	}
	
	if (url.indexOf('tradeshow_ideas') > -1 )
	{
		document.write(trade_shows);
	}
	
	if (url.indexOf('desk___office') > -1 )
	{
		document.write(desk);
	}
	
	if (url.indexOf('drinkware') > -1 )
	{
		document.write(drinkware);
	}
	
	if (url.indexOf('golf_products') > -1 )
	{
		document.write(golf);
	}
	
	if ((url.indexOf('giveaways_under__1_00')) < 0 && (url.indexOf('giveaways') > -1 ) )
	{
		document.write(giveaways);
	}
	
	if (url.indexOf('pens') > -1 )
	{
		document.write(pens);
	}
	
	if (url.indexOf('portfolios') > -1 )
	{
		document.write(portfolios);
	}
	
	if (url.indexOf('clocks___watches') > -1 )
	{
		document.write(clocks);
	}
	
	if (url.indexOf('computer_items') > -1 )
	{
		document.write(computer);
	}
	
	if (url.indexOf('food___drink') > -1 )
	{
		document.write(food);
	}
	
	if (url.indexOf('electronics') > -1 )
	{
		document.write(electronics);
	}
	
	if (url.indexOf('games___toys') > -1 )
	{
		document.write(games);
	}
	
	if (url.indexOf('key_chains') > -1 )
	{
		document.write(keys);
	}
	
	if (url.indexOf('magnets') > -1 )
	{
		document.write(magnets);
	}
	
	if (url.indexOf('recognition___awards') > -1 )
	{
		document.write(awards);
	}
	
	if (url.indexOf('sports___outdoors') > -1 )
	{
		document.write(sports);
	}
	
	if (url.indexOf('stickers__decals___signs') > -1 )
	{
		document.write(stickers);
	}
	
	if (url.indexOf('tools___flashlights') > -1 )
	{
		document.write(tools);
	}
	
	if (url.indexOf('umbrellas') > -1 )
	{
		document.write(umbrellas);
	}
}

var promo_prod="";
promo_prod += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
promo_prod += "  <tr>";
promo_prod += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>Impressive Statistics Behind Promotional Items <\/td>";
promo_prod += "  <\/tr>";
promo_prod += "  <tr>";
promo_prod += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>It has been studied that promotional items can  generate consumer traffic to your establishment, whether online or in the real  world. You might start asking yourself how this can be possible. Much research  has been done on the use of these items, specifically by the marketing  department. What statistics shows with the use of these products is that a huge  percentage of the respondents, approximately 76.1% could recall the name of the  company imprinted on the item. What's astonishing to know about this result is  that the respondents were able to recall the company even when the items they  have received reached as far back twelve months ago. <\/p>";
promo_prod += "      <p>If you have greatly decided upon the choice of  your promotional items, then chances are you belong to the great percentage of  75.4% whose respondents kept the items because they found it useful. Great  statistics such as these from recent studies are a great way to make use of.  Now that you know the impressive results that these items can bring, it may be  time for you to start using them.<\/p>";
promo_prod += "      <p> What are the marketing advantages that can be  brought about by giving away promotional items? You have increased response  rates and this means that your customers will be coming back for more of what  your company has to offer. You will also experience an increased incident of  referrals. With the use of great items, your consumers are more than likely to  talk about your company and the great service that you are giving.<\/p>";
promo_prod += "      <p> With the use of promotional items, you will also  notice an improvement in your business returns. You might be spending for your  items to give away, but the profit that you get to reap from it is massive.  Yes, you will be advertising with the use of these items. But compared to other  conventional and costly methods, these promotional products have an increased  market reach. You might rethink your decision on these items after all.<\/p>";
promo_prod += "      <p> There is a reason why promotional items have been  kept in use in the world of business for such a long time. Not only do they  give visible results, these items have impressive statistics that have been  used to back up the method of giving away products to both consumers and  employees.<\/p>";
promo_prod += "      <p class='about_red_header'><strong>The Top 10 Most Effective Promotional  Products<\/strong><\/p>";
promo_prod += "      <p> If like most companies you've got a modest marketing budget, and want the  best value for your dollar, this list is for you. Here are the top 10 most cost  effective promotional products.<strong> <\/strong><\/p>";
promo_prod += "      <p class='about_red_header'>1.  Promotional Apparel<\/p>";
promo_prod += "      <p> When all wearable categories are combined embroidered  and\/or silk screened apparel is the most effective and popular form of  promotional product.&nbsp;&nbsp; According to a study done by the Promotional  Products Association International (PPAI), custom wearables account for  one-third of all promotional product sales. Logo exposure is  extremely high, as people wear promotional apparel at work, to the gym, and  everywhere on the weekends.<\/p>";
promo_prod += "      <p class='about_red_header'>2.  Back Packs and Tote Bags<\/p>";
promo_prod += "      <p> A study done by the Advertising Specialties Institute  (ASI), the largest media and marketing organization serving the promotional  products industry revealed that of any one category, promotional  bags deliver the most impressions per month (1,038 on average).  Promotional bags are welcomed by recipients because they are useful products.  The most popular types include promotional tote bags, promotional drawstring  backpacks, and promotional computer bags.<\/p>";
promo_prod += "      <p class='about_red_header'>3.  Writing Instruments<\/p>";
promo_prod += "      <p> At some point or another, people are going to need a  pen, so why not give them one with your logo? Promotional writing instruments,  such as promotional pens, are well-liked because they're functional items that  recipients will actually use. Additionally, statistics show  that during the lifespan of a promotional pen, it will have at least 8 owners,  which equates to high logo exposure. Promotional writing instruments are also  excellent advertising giveaways because of their affordability, with some  starting as low as $0.16.<\/p>";
promo_prod += "      <p class='about_red_header'>4.  Desk Accessories<\/p>";
promo_prod += "      <p> Desk accessories for the office are often purchased by  companies to give to employees, but are also purchased for trade shows.  Exhibitors know that promotional desk accessories, like paper  clip dispensers, promotional desk sets and business card cases will be used by  recipients and their logos will be seen by anyone who passes. One of the  most popular forms of office accessories are promotional stress  balls which come in a variety of shapes and sizes, any one of which will  get your logo noticed.<\/p>";
promo_prod += "      <p class='about_red_header'>5. Drinkware<\/p>";
promo_prod += "      <p> Promotional mugs, custom water bottles and promotional  tumblers are always effective giveaways.&nbsp; A logo  imprinted coffee mug will sit on an office desk for all to see on a daily  basis. A promotional travel mug will keep beverages hot and will  showcase your branding for the world to see. Custom  sports bottles are available for under $1 per piece making them an affordable  yet effective giveaway.<\/p>";
promo_prod += "      <p class='about_red_header'>6.  Calendars<\/p>";
promo_prod += "      <p> Promotional calendars are among the most affordable  promotional products available because of their extremely low cost per  impression. A study done by PPAI indicated that 94% of  business calendar recipients could recall the logo imprinted on their calendar and  85% of individuals who received calendars in their homes did business with the  advertiser<\/p>";
promo_prod += "      <p class='about_red_header'>7.  Magnets<\/p>";
promo_prod += "      <p> Promotional magnets are often chosen  because of their affordability and excellent logo exposure. Available in  a wide variety of shapes and sizes (the most popular being business  card magnets or calendars), promotional magnets clearly display contact  information, and since they are typically displayed on a file refrigerator or  file cabinet it’s always in plain view.<\/p>";
promo_prod += "      <p class='about_red_header'>8.  Computer\/Electronic Accessories<\/p>";
promo_prod += "      <p> As technology advances further and becomes a bigger  part of everyones lives, the need for computer related accessories increases.  Promotional items such as custom USB flash drives, mouse pads,  MP3 players, and other related merchandise are highly in  demand as items that will be used and appreciated.<\/p>";
promo_prod += "      <p class='about_red_header'>9.  Sporting Goods<\/p>";
promo_prod += "      <p> Sporting events, both professional and amateur, are an  excellent place to advertise and it's because of this well-known fact that promotional sporting good are extremely effective giveaways.  Promotional stadium cushions work well for team  fundraising like football, basketball, soccer, hockey, and baseball.&nbsp;  Imprinted flyers, more commonly known as Frisbees,  are often chosen for company picnics.<\/p>";
promo_prod += "      <p class='about_red_header'>10.  Automotive Accessories<\/p>";
promo_prod += "      <p> Promotional automotive accessories  are chosen by more than just mechanics because everyone knows that they will be  used. Promotional ice scrapers come in handy during the cold winter  months, and everyone can appreciate receiving a promotional auto safety kit.<\/p><\/td>";
promo_prod += "  <\/tr>";
promo_prod += "  <tr>";
promo_prod += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
promo_prod += "  <\/tr>";
promo_prod += "<\/table>";


var automotive="";
automotive += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
automotive += "  <tr>";
automotive += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Automotive Products<\/td>";
automotive += "  <\/tr>";
automotive += "  <tr>";
automotive += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional items like auto accessories cut across industries. Whether your company is in the automotive industry or not, you can make full use of the branding opportunities offered by car accessories. There is no need for a hard sell when you add your logo or marketing message to practical giveaways such as imprinted key chains, car magnets, and auto decals.  <\/p>";
automotive += "<p>Build awareness for road safety issues with promotional items such as auto accessories. Custom toolkits, flashlights, tire wire gauge tools, pepper spray pens, booster cables, and roadside assistance kits show concern for your recipients’ safety. Remind newly licensed drivers to be responsible behind the wheel with small nifty items like steering-wheel-shaped key chains and mobile phone accessories. <\/p>";
automotive += "<p>Responsibility on the road is certainly something to serious about, but don’t let the issue make your campaign a bore. With promotional bumper stickers and decals and auto shades, you can inject some humor in your marketing while providing entertainment to bored drivers stuck in traffic. <\/p>";
automotive += "<p>Brand exposure over long out-of-town drives is something to consider when you are marketing to the driving demographic. Antennas, star balls, and license plate holders are among the promotional auto accessories and items that will be useful in making pedestrians and drivers aware of your brand. <\/p><\/td>";
automotive += "  <\/tr>";
automotive += "  <tr>";
automotive += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
automotive += "  <\/tr>";
automotive += "<\/table>";


var badges="";
badges += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
badges += "  <tr>";
badges += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Badges and Lanyards<\/td>";
badges += "  <\/tr>";
badges += "  <tr>";
badges += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Lanyards are used in every single  region you can name, from recreational to heavy industrial processes. Schools,  corporations, privately owned organizations, and Government entities rely on  lanyards and often take them for granted because they are so obscure yet are  there when we need it.<\/p>";
badges += "      <p>In addition to sizes, there are a  large amount of different colors and styles that you can go for. Even the  actual material of the lanyard may vary. In reality you can have it custom made  out of any material you so choose as long as it's within reason.<\/p>";
badges += "      <p>Lanyards can hold all sorts of printed material as well as have the actual  lanyard material be custom imprinted with your company or organization's name.  This allows you to carry your personal pride of your work everywhere you go!<\/p>";
badges += "      <p>If you are hosting an event or are attending one, you will probably have a  lanyard that carries a name tag that will enable everyone to greet you by your  first name. <\/p>";
badges += "      <p>There's various ways you can use a lanyard, such as having it hang around the neck,  clipped on, or by using a pin. The quality of the badge holder can also be  tailored to your needs to provide extra protection and durability for easily  scratched objects such as your security key, etc.<\/p>";
badges += "      <p>Name badges are used extensively for advertising  purpose of a company’s brand image. These are found in a wide variety of forms,  designs and colors. Top notch identification badges are made from  high quality and durable materials that assure repetitive use of the badge thus  helping you to save from purchasing any other new one for different occasions.  These durable badges are made from laminated vinyl that guarantees about the color  and longevity from constant usage. Another type of name badges found that are  made of metal and gives a more professional look. Such badges show both badge  holders name and the company's name imprinted into the metal. <\/p>";
badges += "      <p>The name badge chosen by you should be eye-striking, attractive and must  represent the holders name and the company name clearly so that others can read  the content on the badge easily. <\/p><\/td>";
badges += "  <\/tr>";
badges += "  <tr>";
badges += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
badges += "  <\/tr>";
badges += "<\/table>";

var eco_friendly="";
eco_friendly += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
eco_friendly += "  <tr>";
eco_friendly += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Eco-Friendly Products<\/td>";
eco_friendly += "  <\/tr>";
eco_friendly += "  <tr>";
eco_friendly += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Using environmentally friendly promotional products is one  of the easiest ways you can support sustainability.<\/p>";
eco_friendly += "      <p>Due to the remarkably increasing trend of being  environmental friendly, American companies are now also opting for eco-friendly  promotional products. There a few bestsellers amongst this massive category  too, such as, biodegradable &amp; recyclable stadium mugs, eco-friendly  tote bags, etc. Going green by gifting eco-friendly, custom promotional  items to potential customers, will establish an added positivity to your first  impression.<\/p>";
eco_friendly += "      <p>Businesses across the world are also  realizing the benefits of implementing environmentally-conscious technologies  into their operations and they are even using eco friendly promotional gifts  for promoting their company’s name, logo or slogan. These eco friendly  promotional gifts help companies improve relations with their customers and do  their bit towards protecting the environment from further damage.<\/p>";
eco_friendly += "      <p>The promotional marketing industry is going &quot;green&quot; with a sudden  boom in eco-friendly promotional products and  promotional corporate gifts which are increasingly becoming popular among the  corporate sector. Eco friendly not only help  companies in creating effective advertising campaigns but also help them spread  the word about their social values and concern towards conserving earth's  natural resources.<\/p>";
eco_friendly += "      <p>Here are some popular eco friendly products that can be used as  promotional gifts:<\/p>";
eco_friendly += "      <p class='about_red_header'>Eco Friendly Apparel<\/p>";
eco_friendly += "      <p>Today, you can find the trendy and hip clothing items made from eco friendly  fibers such as bamboo, corn, and organic cotton. Clothes made from these  fabrics are renewable and reusable and generate less pollution than  conventional materials at the time of production. Plus, the eco friendly  apparels are popular corporate gifts since they minimize chemicals and pesticides  that come in contact with your body.<\/p>";
eco_friendly += "      <p class='about_red_header'>Eco-Friendly Bags<\/p>";
eco_friendly += "      <p>Promotional organic totes and imprinted recycled bags are also popular eco  friendly company gifts. There is a wide variety of imprinted organic, recycled,  hemp and biodegradable bags in the market to choose from. You can easily  impress your target audience with eco-friendly tote bags made of recycled  material and imprinted or embroidered with your logo. <\/p>";
eco_friendly += "      <p class='about_red_header'>Eco-Friendly Pens and Notebooks<\/p>";
eco_friendly += "      <p>You can get your brand in the hands of your customers, clients or buyers  with a promotional pen or pencil made of  recycled or biodegradable material or corn plastics! These eco friendly  corporate gifts will surely satisfy your customers and employees because they  look great and help preserve the environment!<\/p>";
eco_friendly += "      <p class='about_red_header'>Eco-Friendly Water Bottles<\/p>";
eco_friendly += "      <p>An eco friendly water bottle is an essential item these days for all who  want to stay healthy and contribute towards saving the planet. Eco friendly  water bottles are becoming more and more popular nowadays as people are aware  of the potential dangers that plastic containers can present, and the harmful  effects they have on the environment when discarded without proper precautions.  Eco friendly water bottles made of stainless steel or glass have no chemical  liner and are BPA free.<\/p>";
eco_friendly += "      <p>Depending on the type of promotional products you are ordering, green items are  available at various price ranges to suit different budgets. There are many eco  friendly promotional products available that can be used as corporate gifts or  company gifts to be given away to your employees, customers, dealers and media  people.<\/p><\/td>";
eco_friendly += "  <\/tr>";
eco_friendly += "  <tr>";
eco_friendly += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
eco_friendly += "  <\/tr>";
eco_friendly += "<\/table>";


var bags="";
bags += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
bags += "  <tr>";
bags += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Totes, Bags and Coolers<\/td>";
bags += "  <\/tr>";
bags += "  <tr>";
bags += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional bags are growing in popularity and  importance because they are cost-efficient and practical items for exhibiting  any brand. And, as the green movement gains visibility and environmental  consciousness increases, the category of reusable grocery totes in particular  offers many opportunities for customizing Eco-friendly items with large-scale  appeal. In addition to the fact that they are reusable, benefits of utilizing  promotional bags includes the fact that they are durable, functional, easy to  customize in a variety of colors and materials, and can be used as giveaways at  many events, including fundraisers and industry trade shows. By reading this  article, you will learn more about the benefits of using promotional bags as a  way to increase visibility for your company and how to effectively incorporate  them into your next marketing campaign.<\/p>";
bags += "      <p class='about_red_header'><strong>Promotional Bags to Increase Corporate  Social Responsibility<\/strong><\/p>";
bags += "      <p>Since recycling became commonplace in the  mid-twentieth century, businesses have become increasingly responsible for the  impact that their practices have on the environment. As the cost of energy  rises and landfills grow full with waste that is unable to be recycled, now is  the perfect time to show that your business participates in  environmentally friendly and ethical business practices. One way to do this is  to distribute reusable grocery totes imprinted with your company name and logo.  These bags are great for grocery shopping and other errands, and will be  appreciated by recipients of all ages. Giving promotional bags to clients will  encourage them to think of you whenever they go to the store and employees will  feel at ease knowing that their work is not having a negative impact on the  environment. And, best of all, you can order a lot of reusable grocery totes  for a large global impact without blowing your marketing budget.<\/p>";
bags += "      <p class='about_red_header'><strong>Promotional Bags as Cost-Effective  Advertising<\/strong><\/p>";
bags += "      <p>Many people often think that green, organic products are more expensive than  generic items, but in fact promotional bags are low-cost objects, especially  when you take into consideration the amount of exposure they will garner for  your brand. Reusable bags have become the latest trend, which means that  recipients will carry them wherever they go and you will gain great promotional  mileage. One way to ensure that promotional bags are as effective as possible is  to customize them to fit your corporate style. Promotional bags  come in a variety of color and size options, and range from simple  one-compartment totes to more complex bags with reinforced shoulder straps or  multiple pockets. Another way to guarantee efficiency and control the price of  promotional bags is by selecting a material that is appropriate for your  industry and promotional purpose. There are many materials to choose from,  including standard non-woven totes, those that are collapsible, and even water  resistant bags that are ideal for brokers in the real estate industry who may  be outside a lot while showing houses.<\/p>";
bags += "      <p class='about_red_header'><strong>Choosing Promotional Bags that are right  for you<\/strong><\/p>";
bags += "      <p>Since there are so many different types of promotional bags and ways in which  they can be customized, you might be wondering how to determine which variety  is right for you. The two biggest factors in making this decision is the type  of industry that you work in and the promotional purpose that you have in mind.  For example, promotional bags with reinforced bottoms are great for the  education industry because they can hold more weight and therefore students can  use them to carry books. And, because they have ample space for imprinting a  company name and logo, these bags will provide exposure for your company when  students walk across campus and bring them to class. Another way to gain  exposure is to customize bags for fundraisers and trade show giveaways. Classic  one-sized personalized bags are affordable enough to be mass giveaways and will  attract people to your booth at industry trade shows, while  compartmentalized totes are ideal ways for non-profit associations to thank  donors. And of course, when selecting promotional bags for your company,  personal preference is key too. You want to give away a product that you like,  since recipients will carry the bags and you (along with potential customers)  will see them a lot. <\/p>";
bags += "    <p>No matter what industry you are in, promotional bags offer many advantages and  can be customized as part of your next marketing campaign.<\/p><\/td>";
bags += "  <\/tr>";
bags += "  <tr>";
bags += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
bags += "  <\/tr>";
bags += "<\/table>";


var corporate_gifts="";
corporate_gifts += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
corporate_gifts += "  <tr>";
corporate_gifts += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Corporate Gifts<\/td>";
corporate_gifts += "  <\/tr>";
corporate_gifts += "  <tr>";
corporate_gifts += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>In order to stand out in the cutthroat competition in  different sectors of businesses,  the trend of giving attractive and unique gifts in corporate and business world is growing rapidly. Now, apart  from advertisement through electronic media, businesses and corporate houses  are also using different types of corporate gifts to allure the attention of  their clients as well as appreciating their employees. In other words, with an  aim of welcoming and impressing potential clients, thanking existing ones and  appreciating employees, corporate gifts are distributed. These gifts  embellished with your company name, logo, message and website address, are very  helpful for companies and businesses to allure the attention of potential  clients and employees. Apart from this, offering these gifts to your clients is  also one of the innovative ways of gaining attention as well as increasing  brand awareness.<\/p>";
corporate_gifts += "      <p>In other words, money that is spent in offering these gifts is often returned  the form of future generated business. These gifts without any doubt are the  perfect way of making unique brand awareness in the market. Today, marketplaces  are flooded with a variety of promotional items and corporate gifts. Some of  the popular and cost-effective gifts are photo frames, umbrellas, note books,  stress massagers, wallets, leather bags, pens, t-shirts, mouse mats, watches,  key rings, wine accessories and many others. They can be imprinted with your  company name, logo, message and web address.<\/p>";
corporate_gifts += "      <p>Whether it is conference, client visit, exhibition, seminar, road show, trade  show or any kind of occasion, these gifts are sure to allure the attention of  potential clients. No doubt, they have completely changed the concept of  advertising. Now, all types of businesses, charities, clubs, hotels, restaurants,  organizations and corporate houses are using the as a perfect marketing tool. <\/p>";
corporate_gifts += "      <p>The corporate gifts can be an awesome way to provide customers and  employees with the knowledge that their efforts matter. In today's world, you  cannot let one person affect your  business without letting them know that they make a  difference and are appreciated for what they do. With a wide variety of promotional  products to offer, you don't have to worry about finding a  way to make everyone feel special.<\/p>";
corporate_gifts += "      <p>For most customers, employees, and business associates, it's not about the  actual gift. It's about the thought and intent behind the gift that makes them  appreciative of your corporate gifts. As long as you find a product that is  suiting, your message will get across every time. When you're looking to show  appreciation to anyone that has affected your business, customized and  personalized corporate gifts and promotional products can be a meaningful and  productive way to show you care. <\/p><\/td>";
corporate_gifts += "  <\/tr>";
corporate_gifts += "  <tr>";
corporate_gifts += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
corporate_gifts += "  <\/tr>";
corporate_gifts += "<\/table>";


var calendars="";
calendars += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
calendars += "  <tr>";
calendars += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Calendars<\/td>";
calendars += "  <\/tr>";
calendars += "  <tr>";
calendars += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>There are more than enough advantages of promotional  calendars. These include: perfectly affordable promotion, increased sales  volume, improved productivity, revenue generation and business identity  development. All you have to do is to not overlook the value of calendar  printing so that you may be able to achieve your targets in an efficient  manner.<\/p>";
calendars += "      <p>Color calendars can help  businesses by providing year long advertising for your products or services. By  the very nature of calendars, it is easy to convince people to use free custom  calendars from your company and use them at their house or office. This  provides the perfect platform for you to advertise using the monthly images in  the calendar. Each month will give you a fresh new advertising message right in  front of your potential customers eyes. It is a very good investment that lasts  really long.<\/p>";
calendars += "      <p>Calendars also do good by spreading the awareness and exposing your company to  the public. Much like brochures, posters and flyers, calendars provide you with  a way to communicate with the public and introduce yourself as a legitimate and  appealing business. The unique thing about calendars is that it does this  promotion of company awareness for the whole year. <\/p>";
calendars += "      <p>Custom calendars can also be used as a launching point to establish a certain  kind of public image. Using the monthly images as your tools, you can convince  your market that you are a very trustworthy company that people can do business  with. You can even adapt a certain business personality by trying to appear  cool, hip or very modern to appeal to a mainstream audience. By just making the  appropriate images in your monthly spreads, you can slowly establish this image  on your public.<\/p>";
calendars += "      <p>Calendars can also help your business by improving employee  morale. There is nothing like seeing your company’s official calendars to  convince you that the firm is good and going all right. You can place  encouraging words for each month in the custom calendar to help your employees  sprits up during the duration of the year. It is also possible to add in  greetings into the color calendar design to make your employees feel  appreciated.<\/p>";
calendars += "      <p>You can use calendars as great promotional tools. For example, you can tell  people that they can get a free calendar if they buy a certain amount of  products for you. You can also turn your calendars into catalogs if you want,  displaying a certain group of products that are perfect for each month. There  are plenty of ways such as this to use your custom calendars for promotions.  This can really help you increase sales and customers, especially  at the start of the year.<\/p>";
calendars += "      <p>Pass along promotional calendars and date  books to your customers and you will be providing them with a great item that  they can use all year long. Promotional calendars will be hung and viewed  throughout your community serving as a constant, year round advertisement for  your business. Many businesses are looking for the best advertisements for  their business, and for a very small investment, a promotional calendar will  work to advertise for your business day after day. What better  way to invest in your business than with some promotional calendars!<\/p><\/td>";
calendars += "  <\/tr>";
calendars += "  <tr>";
calendars += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
calendars += "  <\/tr>";
calendars += "<\/table>";
var calendars="";
calendars += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
calendars += "  <tr>";
calendars += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Calendars<\/td>";
calendars += "  <\/tr>";
calendars += "  <tr>";
calendars += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>There are more than enough advantages of promotional  calendars. These include: perfectly affordable promotion, increased sales  volume, improved productivity, revenue generation and business identity  development. All you have to do is to not overlook the value of calendar  printing so that you may be able to achieve your targets in an efficient  manner.<\/p>";
calendars += "      <p>Color calendars can help  businesses by providing year long advertising for your products or services. By  the very nature of calendars, it is easy to convince people to use free custom  calendars from your company and use them at their house or office. This  provides the perfect platform for you to advertise using the monthly images in  the calendar. Each month will give you a fresh new advertising message right in  front of your potential customers eyes. It is a very good investment that lasts  really long.<\/p>";
calendars += "      <p>Calendars also do good by spreading the awareness and exposing your company to  the public. Much like brochures, posters and flyers, calendars provide you with  a way to communicate with the public and introduce yourself as a legitimate and  appealing business. The unique thing about calendars is that it does this  promotion of company awareness for the whole year. <\/p>";
calendars += "      <p>Custom calendars can also be used as a launching point to establish a certain  kind of public image. Using the monthly images as your tools, you can convince  your market that you are a very trustworthy company that people can do business  with. You can even adapt a certain business personality by trying to appear  cool, hip or very modern to appeal to a mainstream audience. By just making the  appropriate images in your monthly spreads, you can slowly establish this image  on your public.<\/p>";
calendars += "      <p>Calendars can also help your business by improving employee  morale. There is nothing like seeing your company’s official calendars to  convince you that the firm is good and going all right. You can place  encouraging words for each month in the custom calendar to help your employees  sprits up during the duration of the year. It is also possible to add in  greetings into the color calendar design to make your employees feel  appreciated.<\/p>";
calendars += "      <p>You can use calendars as great promotional tools. For example, you can tell  people that they can get a free calendar if they buy a certain amount of  products for you. You can also turn your calendars into catalogs if you want,  displaying a certain group of products that are perfect for each month. There  are plenty of ways such as this to use your custom calendars for promotions.  This can really help you increase sales and customers, especially  at the start of the year.<\/p>";
calendars += "      <p>Pass along promotional calendars and date  books to your customers and you will be providing them with a great item that  they can use all year long. Promotional calendars will be hung and viewed  throughout your community serving as a constant, year round advertisement for  your business. Many businesses are looking for the best advertisements for  their business, and for a very small investment, a promotional calendar will  work to advertise for your business day after day. What better  way to invest in your business than with some promotional calendars!<\/p><\/td>";
calendars += "  <\/tr>";
calendars += "  <tr>";
calendars += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
calendars += "  <\/tr>";
calendars += "<\/table>";

var made_in_usa="";
made_in_usa += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
made_in_usa += "  <tr>";
made_in_usa += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Made In USA Products<\/td>";
made_in_usa += "  <\/tr>";
made_in_usa += "  <tr>";
made_in_usa += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>One of the many things you can do  to support the ailing economy is to buy locally made products. By patronizing  products made in the USA,  you are helping these businesses stay afloat. <\/p>";
made_in_usa += "      <p>Whether you are running a promotion in time for a national holiday like Fourth  of July, Memorial Day, Veterans Day, or simply want to ignite patriotism and  build loyalty for the country, you can choose from thousands of customizable  all-American promotional products to imprint  your logo. Choose from custom automotive products, promotional calendars,  homegrown eco-friendly items, health and fitness giveaways, mugs and drinkware, and office items. <\/p>";
made_in_usa += "      <p>Promotional calendars are also a good and inexpensive way to market your brand  all year. Help recipients appreciate the beauty of America's tourist spots with the  Patriotic America calendar. <\/p>";
made_in_usa += "      <p>Environment-friendly promotional items are also a good  way to build rapport with your customer base. Your recipients will love the  fact that these all-American promotional products with your logo are  nature-loving. Golf aficionados will look forward to an environment-friendly  day out at the greens with promotional golf tees made of biodegradable plastic.  For giveaways that cut across demographics, why not choose between a commuter mug or a letter opener made from  corn plastic? <\/p>";
made_in_usa += "      <p>Health care and fitness giveaways are a good way to show some soul. These  all-American promotional products bearing your logo are a kind gesture that  means you care much about their well-being. Your recipients will appreciate  these locally made custom thermometers, pill cases, thermometers, sanitizers,  first-aid kits, cooling gel, and manicure kits. <\/p>";
made_in_usa += "      <p> Mugs and drinkware will enable you to subtly promote your brand from morning  till night. Whether at breakfast, lunch, dinner, outdoors, or in the office,  logo tumblers, water bottles, ceramic mugs, thermos, and jugs will make sure  your brand is given sufficient exposure. Ask your account manager for the best  imprinting method to use so your logo is rendered well. <\/p><\/td>";
made_in_usa += "  <\/tr>";
made_in_usa += "  <tr>";
made_in_usa += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
made_in_usa += "  <\/tr>";
made_in_usa += "<\/table>";


var school="";
school += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
school += "  <tr>";
school += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About School & Spirit Products<\/td>";
school += "  <\/tr>";
school += "  <tr>";
school += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>The school mascot is an esteemed  symbol for its students, teachers and the rest of  the faculty through which they associate themselves to the institution and take  pride in being a part of it. It is this symbol that the students grow up with  and treasure as an everlasting memento which is etched in their minds for the  years to come. Cheering for their sports team, wearing apparel items with the  school mascot generates a school spirit in the students and encourages them to  perform or achieve the best for their institution. There are various tools  available which can help demonstrate the school spirit lying within each  student. The advertising and marketing industry has a multitude of  school-related products to facilitate building a brand identity for the  institution and creating a whole school spirit around it.<\/p>";
school += "      <p>There are promotional products which can be  used as branding opportunities for institutions for various purposes.  Promotional items can be given as rewards for exceptional performance and go long  way in building a connection between the school and its students. It not  only serves as an appreciation of the performers but also as a motivation and  inspiration for others to aim higher. A graduation souvenir which can be  customized to carry the school logo can be a great remembrance of  ones school experience.<\/p>";
school += "      <p>Apparel items are the best ways to promote the school spirit and show support  for the school. T-shirts, caps, sweatshirts carrying school name, logo or  emblem, printed or embroidered, in the school&rsquo;s colors can be made available to  the students, faculty and alumni for various school celebrations to bring about  their love for the school.<\/p>";
school += "      <p>Fun items like clappers and foam fingers are great promo items for sporting  events, games or other exciting events. Not only do they help in forceful and  loud cheering but also are conspicuous enough to seek attention and create a  school spirit.<\/p>";
school += "      <p>Bracelets in vinyl or silicon rubber can also be good promotional items for schools or  colleges. You can have them made in the school colors, embossed with the school  logo and have the students can wear these for certain extracurricular  activities or to extend their support at pep rallies.<\/p>";
school += "      <p>School bags or backpacks or binders with the school logo imprints can be  customized to the student&rsquo;s requirements and be used as promotional items to  show support for the school.<\/p>";
school += "    <p>Certain promotional items can be used as a perfect way to greet students back  to school after vacation, besides encouraging school spirit. The best products  to use could be those that help students get organized and also promote a fun  and support spirit. Promotional calendars can be good examples to manage and  organize school, work and fun time; also be used to display pictures of the  school campus. <\/p><\/td>";
school += "  <\/tr>";
school += "  <tr>";
school += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
school += "  <\/tr>";
school += "<\/table>";


var giveaways1="";
giveaways1 += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
giveaways1 += "  <tr>";
giveaways1 += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Giveaways Under $1.00<\/td>";
giveaways1 += "  <\/tr>";
giveaways1 += "  <tr>";
giveaways1 += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional products&nbsp;have been used for a long time to promote  business. Your business name printed on the product will market your business  to others who don&rsquo;t know anything about your business. Moreover, your clients  will remember to come to you when they have your business logo on the useful product  you have given them. You can giveaway promotional products for free for your  business audience during trade shows, special events and  even during your marketing campaigns.<\/p>";
giveaways1 += "      <p>While promotional products certainly help you to take your business to new heights, you must be cautious  with the budget for the promotional product. You can't  simply spend several dollars for a product because each and every promotional  product you giveaway will not bring you profits. Hence, you must look for cheap  products that can be useful for your potential audience in one way or the  other.<\/p>";
giveaways1 += "      <p>Our cheap promotional items under $1.00 give your marketing strategies bigger bang for fewer bucks as you  try and find your way to the success multi-million dollar businesses have  achieved with time and persistence. These cheap promotional  products make great start-up items for each company seeking to  establish the beginnings of their marketing strategies. Your newly developed  custom logo will ensure the type of quality befitting organizations proven to  be on the rise through these specialty  promotional products. The value of $1.00 has never been greater with  cheap promotional items under $1.00 ready to take your company to another  level.<\/p><\/td>";
giveaways1 += "  <\/tr>";
giveaways1 += "  <tr>";
giveaways1 += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
giveaways1 += "  <\/tr>";
giveaways1 += "<\/table>";


var trade_shows="";
trade_shows += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
trade_shows += "  <tr>";
trade_shows += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Tradeshow Products<\/td>";
trade_shows += "  <\/tr>";
trade_shows += "  <tr>";
trade_shows += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Advertisement is a much needed  part of modern day business. Any corporate house of  business establishment that takes itself seriously has to advertise and promote  itself to get noticed in this customer centric economic world order. And one  way they can do so is through the use of unique promotional items that they can  give away at trade shows and seminars. There are  a lot of promotional trade show items to  choose from and often selecting any particular product could get a bit  difficult.<\/p>";
trade_shows += "      <p>Trade show promotional items are great ways to show the customers or people who  have taken the initiative to visit a particular stall that the companies care.  It is any way better than handing out flyers and pamphlets that would be either  thrown away or stacked up somewhere with other documents. A promotional item,  on the other hand, would be used by the people that they are given out to and  would ensure that the companies that are giving them out remain visible for  long. The crucial question in all this is that how does one select the best  promotional trade show items and stay ahead of competition?<\/p>";
trade_shows += "      <p>There are different types of promotional items and promotional products in the market. The corporate  clients and others wanting to make an impact on their target audiences are not  limited by a dearth of options. There are certain promotional products that are  best for distribution in trade shows though. The items should be attractive and  useful. These should also contain the name and the other company specifics  displayed for all to see and comprehend. Such items given out as gifts - would  definitely create an edge for the companies making such distributions. Such  promotional gift items could be anything from pens, mugs, and items of clothing  to letter openers or key chains.<\/p>";
trade_shows += "      <p>People love to receive small luxury items that they wouldn't  normally purchase for themselves. You can consider a nice wine gift set,  crystal gift or a digital frame. Don't forget the finishing touches: a gift bag custom imprinted with your logo and tied with  a gold or silver ribbon. If you're giving marketing gifts to potential  customers, desktop items will serve as a functional reminder of your brand. So  get into the groovy style of promoting your organization by utilizing this  amazing marketing strategy to optimum level. <\/p><\/td>";
trade_shows += "  <\/tr>";
trade_shows += "  <tr>";
trade_shows += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
trade_shows += "  <\/tr>";
trade_shows += "<\/table>";


var desk="";
desk += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
desk += "  <tr>";
desk += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Desk & Office Products<\/td>";
desk += "  <\/tr>";
desk += "  <tr>";
desk += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional desktop &amp; office items are key  items for tapping the table top marketing arena. Office desktops can give you  direct advertising access to a huge market segment. By giving away promotional  office items like organizers, pens, coffee mugs, staplers, you can create great  exposure for your brand. You'll get exposure 8 hours a day \/ 5 days a week. And  you don't just get exposure to one person, the entire office would be able to  see your brand. <\/p>";
desk += "      <p>Here are some products we can recommend that you  can use to promote your product: calculators, clocks, calendars and planners, picture  frames, portfolios, mouse pads, letter openers and other desk top accessories,  all are available in diverse price points to suit any promotional plan.<\/p>";
desk += "      <p>Promotional desktop items are easy to personalize and offer the recipient great  usability. There's a very high likelihood that they'll keep it and continue  using it. Plus, you can even use promotional desktop and office items for  internal branding. Use it to motivate employees and ultimately increase  productivity. Having branded office products promotes a sense of pride within  the workplace. <\/p>";
desk += "      <p>Economical, practical, useful and versatile, promotional items for the office  are definitely the ideal corporate giveaways when your marketing strategy has some  limitations. The desktop is a great platform with which to showcase your  company.<\/p><\/td>";
desk += "  <\/tr>";
desk += "  <tr>";
desk += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
desk += "  <\/tr>";
desk += "<\/table>";


var golf="";
golf += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
golf += "  <tr>";
golf += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Golf Products<\/td>";
golf += "  <\/tr>";
golf += "  <tr>";
golf += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Golf is an international sport that almost anyone enjoys  doing. Some would see it as a form of leisure while some consider it a form of  exercise. But most businessmen see the worth of golf as something that is not  only a form of unwinding from work but also a sport where they can connect with  fellow businessmen and exchange discussion on important business matters. <\/p>";
golf += "      <p>Nowadays, many people would usually hold golf tournaments for the purpose of  building camaraderie and friendship. So part of these tournaments are the  little things that golf organizers give to those who participate. Promotional golf products serve as  tokens for golfers.<\/p>";
golf += "      <p>Promotional golf bags and towels, tees and balls, can provide your business  with some added advertising that can target the other business people in your  region. Even if you don't tee off yourself, consider offering some incredible  logo imprinted balls and tees to those you do business with already in your  community. Golf balls travel and surely every golfer constantly needs to  replenish their supply, so why not send your information soaring on some  incredible golf balls to some of the biggest business people in your community.<\/p>";
golf += "      <p>Because you want as many people as possible to see your logo, if the item that  you give to people gets lost it is not a problem. You won't likely have people  picking up golf towels and reusing them, but  golf balls will get grabbed. They have a pretty long life and when people find  them they will no doubt use them. When they pick them up they will see your  logo and you have advertising.<\/p>";
golf += "      <p>There are other things besides golf balls and towels that people need for the  sport. You can give sports bottles to avid golfers too. It can get really hot  out there and they need to drink plenty of water. Hats are good too because  otherwise there will be some sunburn to deal with.<\/p>";
golf += "      <p>Golfers need golfing accoutrement and if you want to attract the attention of  that demographic then this is a good way to do it. There are many inexpensive  items to choose from that will appeal to golf fans. Whatever you decide on you  have a good chance of getting some business, and at the very least some  exposure.<\/p><\/td>";
golf += "  <\/tr>";
golf += "  <tr>";
golf += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
golf += "  <\/tr>";
golf += "<\/table>";


var drinkware="";
drinkware += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
drinkware += "  <tr>";
drinkware += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Drinkware Products<\/td>";
drinkware += "  <\/tr>";
drinkware += "  <tr>";
drinkware += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>It is surprising that a simple mug  can be such a powerful marketing and advertising tool. By embossing your company  name, message, logo, website URL, and contact details on promotional mugs, you  can impart a message to prospective clients and those around them. By using the  latest printing techniques, promotional mugs can easily be decorated to reflect your business or brand style and advertising  message for creating strong and lasting brand recall.<\/p>";
drinkware += "      <p>Reaching into homes and offices can sometimes be a challenge, but the task gets  easier by using promotional items such as mugs,  water bottles, coasters, bottle openers, wine accessories.&nbsp; They serve as your vehicle to maintain top of  mind presence in the minds of your clients and consumers. Whenever they look  for a service provided by you, they will make a call to you. In comparison to  other promotional items, promotional drinkware items are relatively  inexpensive. They can be effectively used during various events such as a  product launch, store sale, conventions, exhibitions, and tradeshow. <\/p>";
drinkware += "      <p>Many companies also use promotional coffee  mugs, travel mugs and water bottles as teasers. They use them to  inform people about upcoming promotional events by printing event dates and  location. This ensures strong attendance for your company events. This is  because you can imprint a date on people's minds months ahead of the event. By  adding a simple and catchy message to the design of your promotional mug, you  can increase the traffic to your stores and stall. The increase in traffic will  certainly boost sales, not to mention that they are bringing home your advertisement  through promotional mugs. <\/p>";
drinkware += "      <p>You can also use promotional drinkware items as employee rewards too. It looks  simply impressive when you walk in to an office and the employees are using  such logo products embossed with the company logo and name. This gives a  feeling of brand loyalty and pride.<\/p>";
drinkware += "      <p>Browsing our website, you will find a wide range of coffee mugs, travel mugs,  water bottles, beer mugs, plastic and paper mugs, available in a variety of  styles, designs, and colors as well as great ideas for gift sets for your best  customers. <\/p><\/td>";
drinkware += "  <\/tr>";
drinkware += "  <tr>";
drinkware += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
drinkware += "  <\/tr>";
drinkware += "<\/table>";
drinkware += "";


var pens="";
pens += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
pens += "  <tr>";
pens += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Pens<\/td>";
pens += "  <\/tr>";
pens += "  <tr>";
pens += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>In the vast plethora of promotional items, promotional pens have been in use  from a very long time. They have been used by every business organization  whether big or small and have marked their presence at every occasion.  Promotional pens have become the popular choice in a short span of time. Owing  to the highly beneficial attributes that they possess, promotional pens are a great business ";
pens += "        tool and a perfect advertising  vehicle to endorse your business. They are a versatile product that can be  customized to suit your niche requirements and preferences. <\/p>";
pens += "      <p>To begin with and the most  important reason for using promotional pens is their cost effectiveness. They  are a product that easily finds its place in every budget and fits well within  the financial constraints of every organization. They are by far one of the  most inexpensive ways to get your brand across. A promotional pen is cheap but  at the same time capable of taking your brand name far and wide.  Promotional pens will very well fit into the smallest pocket and serve the user  with multiple benefits. <\/p>";
pens += "      <p>Promotional pens can be used in  each and every way you would want to use them. This simple writing instrument  can be used as freebies at various events such as trade shows, exhibitions and the  like. And since they make for an extremely inexpensive item, you certainly  won't have problems giving them away as free gifts. Distributing promotional pens  as free giveaways is quite an idea to add on the customer base of your company. <\/p>";
pens += "      <p>Promotional pens are not popular simply because of their  cheap nature. There is absolutely no point in using a product just because it  is cheap and cannot put your message across effectively. Promotional pens apart  from being cheap offer wide reach and exposure. They are something that is  going to stay for long and will be used for sure unlike other promotional items  that are mere showpieces and are thrown away in some dark corner of the  cupboard. Promotional pens are something that is going to be in use for a long  time to come and serve as a constant reminder for your brand. In the long run  you might just end up imprinting your brand name in the minds of the user. And  it is not just the immediate user that notices your brand but also others  around him. A promotional pen that is embellished with the name of your company  and affixed to the pocket of your customer will keep disseminating your message  everywhere. With a single promotional pen you get to be noticed by so many  people. Isn&rsquo;t that just great? <\/p><\/td>";
pens += "  <\/tr>";
pens += "  <tr>";
pens += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
pens += "  <\/tr>";
pens += "<\/table>";
pens += "";


var giveaways="";
giveaways += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
giveaways += "  <tr>";
giveaways += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Giveaways<\/td>";
giveaways += "  <\/tr>";
giveaways += "  <tr>";
giveaways += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Businesses will never run out of  occasions for business gifts and corporate giveaways. Gift giving is a part of  operations. Giveaways that bear corporate logos do many things for businesses.  They help build business ";
giveaways += "        relationships, increase sales, and  enhance visibility. <\/p>";
giveaways += "      <p>Here are some of the occasions in which promotional giveaways are useful: <\/p>";
giveaways += "        <p class='about_red_header'>1. End of the year <\/p><p> This is the time to reward employees for their good  performance during the year. While trophies, plaques, and medals have been used  in the past to honor employers, today, usable items such as food baskets, desk  clocks, or leather briefcases are more appreciated because of their practical  value. <\/p>";
giveaways += "        <p class='about_red_header'>2. Anniversaries <\/p><p>Anniversaries are an important moment in the corporate calendar. It is a  celebration of how far a company has gone. The twenty-fifth, fiftieth, and  hundredth anniversaries are significant milestones. Companies often throw big  parties to celebrate these occasions and memorabilia such as pewter wine corks,  plated letter openers, and alarm clocks make great business gifts. Corporate  giveaways such as t-shirts, travel mugs, tote bags, notebooks, and photo frames  bearing the company logo give employees a warm feeling of being part of the  team.<\/p>";
giveaways += "        <p class='about_red_header'>3. Special events <\/p><p> Important company events such as when an  organization goes public, a major merger, or a new board chairman or president  are also reasons to give out business gifts. Some corporate giveaways such as  pens, desk organizers, and padfolios are impressive giveaways that are  indicative of a company&rsquo;s status. <\/p>";
giveaways += "        <p class='about_red_header'>4. Tradeshows <\/p><p> Tradeshow's are an  incredible opportunity to get your business name out in your community  and surrounding areas. Building a business takes time but you will find that a  trade show is a very effective tool to building a business that is rock solid.  Having incredible giveaway items will draw more people into your booth than any  other single thing that you can do at a trade show. If the item you use has a  purpose it will work nicely. People will use a travel mug daily, probably for  years. Sports bottles or water bottles are a good choice. A bottle opener is  something that people will hold on to, unless it breaks on the fourth bottle  that it opens. USB flash drives are an unusual and practical item. You can put  your name on them in the same way as anything else. They are popular too  because everyone needs them. <\/p>";
giveaways += "        <p class='about_red_header'>5. Holiday presents <\/p><p> Promotional giveaways are good ways  to show you are one with your employees in celebrating a special holiday such  as Christmas, New Years, and Thanksgiving. Holiday  baskets, wine, cocoa tins, chocolate, candy, and gourmet delicacies are items  that employees can share with their families or with the rest of the  department. <\/p>";
giveaways += "        <p class='about_red_header'>6. Thank you <\/p><p> A company will probably never run out of excuses to say  thank-you to clients, employees, and customers. It doesn&rsquo;t take much to show  gratitude. Small gifts such as imprinted pens, key chains, luggage tags, and  mugs speak volumes. <\/p>";
giveaways += "      <\/td>";
giveaways += "  <\/tr>";
giveaways += "  <tr>";
giveaways += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
giveaways += "  <\/tr>";
giveaways += "<\/table>";


var portfolios="";
portfolios += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
portfolios += "  <tr>";
portfolios += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Portfolios<\/td>";
portfolios += "  <\/tr>";
portfolios += "  <tr>";
portfolios += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>There are many reasons that you  might want to use promotional &nbsp;portfolios.  Sometimes, the point of promotional items should be to get your name out there;  and other times the point should be to make sure that you know how well you are  going to be able to take your clients and turn them into lifelong customers.  Therefore, something that you want to consider is how well you are able to the promotional item, and how important  these items are going to be. <\/p>";
portfolios += "      <p>It is important to use promotional items that are meaningful, and this is part  of why promotional portfolios are a good idea for you. Whether it is a leather  or vinyl portfolio, a notepad, or a computer bag, those are items that people  are going to use and promote your name and business through them. <\/p>";
portfolios += "      <p>By customizing a portfolio with your  company's name and marketing message, you can advertise to your valued clients  and employees by presenting them with a practical, attractive piece of  marketing collateral. The importance of promotional portfolios, journals and  notebooks in any corporate environment or office setting is unparalleled, and  these promotional products can encourage end users to employ more organized  note taking and record keeping techniques. Furthermore, custom imprinted  portfolios emphasize the diligent work ethic and attention to detail which your  organization strives to maintain internally on a daily basis. With promotional  journals such as jotters, padfolios, and portfolios, you can select the  variation of journal book that best fits your brand's marketing needs. The timeless  necessity of handwriting notes and memos shows no signs of diminishing in  importance, so promotional journals are a category of promotional products that  can uphold your branding efforts for years to come.<br \/>";
portfolios += "      <\/p><\/td>";
portfolios += "  <\/tr>";
portfolios += "  <tr>";
portfolios += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
portfolios += "  <\/tr>";
portfolios += "<\/table>";


var clocks="";
clocks += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
clocks += "  <tr>";
clocks += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Clocks & Watches<\/td>";
clocks += "  <\/tr>";
clocks += "  <tr>";
clocks += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>With every company, ranging from small business units to large  corporate entities, giving their customers promotional giveaways, it is  important to select the best corporate gift that is attention grabbing and  useful at the same time. Business promotional products should be popular and promotional clocks have been rated  as one of the most popular corporate gifts available today.<\/p>";
clocks += "      <p>Clocks make excellent corporate gifts. Promotional clocks are standouts for  daily exposure of your brand. They are high quality promotional products which  can be easily used to please your customers. In today's era of competitive and  fast-paced marketing, these clocks still remain one of the most favourite  choices for advertisers who wish to enhance and broaden their brand appeal. As  promotional products, clocks help the companies to create their own unique,  attention grabbing gift for successful marketing.<\/p>";
clocks += "      <p>Branded clocks with imprinted photographs, text messages or graphics of your  brand make a long-lasting impression about your company in the mind of the  customers. Every time they check the time, they will remember the message and  logo of your company. There are promotional clocks which have multiple features  built into them, such that they not only tell the time but also temperature and  date.<\/p>";
clocks += "      <p>These promotional clocks are available in various designs and styles which can  be further customized. Some examples include desk clocks, executive travel  clocks, wall clocks, temperature digital clocks, office wall clocks, compact  travel clocks, radio clocks, and so on. These promotional items can be made to  look very modern or even take on a more classical or traditional look. They can  be personalized to look any way a company wants. Companies can design their own  clocks and choose the color, shape, and overall style according to their needs.<\/p>";
clocks += "      <p>Promotional clocks look very impressive with a business name and logo on them.  It makes sense to have a visible name and logo printed on them because clocks  are always around and people are always referencing them. People like to  receive promotional printed clocks as giveaway items. They can use them in  their homes or in their offices at work. After all, you want a product that you  can depend on. These are high quality products that add sophistication and  style to your brand promotion initiative.<\/p>";
clocks += "      <p><br \/>";
clocks += "      <\/p><\/td>";
clocks += "  <\/tr>";
clocks += "  <tr>";
clocks += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
clocks += "  <\/tr>";
clocks += "<\/table>";


var electronics="";
electronics += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
electronics += "  <tr>";
electronics += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Electronics Products<\/td>";
electronics += "  <\/tr>";
electronics += "  <tr>";
electronics += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Electronic promotional products are a great way to add  personality and style to your original promotional ideas. With their high-tech  appearance, they not only look great, but are also a valuable tool for  executing successful promotional marketing campaigns. Such marketing products  are a great way to provide recipients with a functional and high-quality  promotional product without being too traditional.<\/p>";
electronics += "      <p>Stand out at the next event with  our great selection of promotional electronics. These electronic promotional  items are an easy way to gain attention at conferences, events and trade shows.  Adding your logo to custom imprinted electronics will showcase it in a whole  new light and people will be thrilled to receive these electronic giveaways. <\/p>";
electronics += "      <p>Make your event interactive by  holding raffles or contests and offer imprinted Cell Phone Accessories as prizes  to the winners. Your trade show booth will be the one that they remember when  you add your logo to unique business gifts like MP3 Players, cameras, radios  and voice recorders. <\/p>";
electronics += "      <p>Take your promotional marketing  strategy into the digital age with these custom USB drives. Our promotional  electronics make great business gifts, and our custom speakers, calculators,  headphones, digital frames and other fun items and are the perfect way to show  your clients and prospects that they're appreciated.<\/p><\/td>";
electronics += "  <\/tr>";
electronics += "  <tr>";
electronics += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
electronics += "  <\/tr>";
electronics += "<\/table>";



var food="";
food += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
food += "  <tr>";
food += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Food & Drink Products<\/td>";
food += "  <\/tr>";
food += "  <tr>";
food += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>If there is one thing that all  people like, it has to be food. There are promotional sweets that you can use  for your business. You could give each  person that goes through your lobby or store a little something. That way you  will make everyone glad that they walked through the doors and they will surely  do it again.<\/p>";
food += "      <p>You can purchase packages of promotional candy to give to your customers to  take home. These all have your company logo on each piece of candy. When people  have these at home every time someone eats out of the box they will see your  company name. You can also create some nice giveaways that you put together for  people. A promotional mug filled with candy  is a nice gesture.<\/p>";
food += "      <p>If you would like to package your candy in something that people will keep why  not use a promotional tin. These things come in all different shapes and sizes.  You can pick which colors you like and buy them either with or without candy  already inside. If you make it look good enough it will be used again and  again. People will refill it with mints or other candy and keep it in the car  or in their purse because it is so handy.<\/p>";
food += "      <p>Sweet treats make a great item to give away and also to help draw attention to your business. The more the people  in your community see and hear about your business, the more likely they are to  become regular customers and return again and again. Using delicious goodies to  advertise with will definitely get people talking and perhaps even stopping in  for some of the yummy treats you are offering. You can never go wrong offering  promotional food like candy items, chocolate gifts, mints, nuts or popcorn  gifts. This type of promotion can really create a stir and draw more people  into your business than ever before. Try it and you will see that the way to a  person&rsquo;s wallet is through their stomach.<\/p><\/td>";
food += "  <\/tr>";
food += "  <tr>";
food += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
food += "  <\/tr>";
food += "<\/table>";



var computer="";
computer += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
computer += "  <tr>";
computer += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Computer Items<\/td>";
computer += "  <\/tr>";
computer += "  <tr>";
computer += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>You will be amazed by the  attention and exposure that your business gets from the use of various  promotional computer items. It is a good way to help your business to grow.  These products are very effective as the internet and the home computer have  become household fixtures that almost no one is living without. Promotional  computer items serve your business well, not only in creating brand recognition  which is ever so important in your business structure, but also in helping them  to recall your business time and time again. Promotional products serve as the  little birdie providing them with a constant reminder of your business.<\/p>";
computer += "      <p>You can find many different handy computer related items to fit your budget.  There are small flash drives that are always handy. Mouse pads are great too.  You can even have laptop lights imprinted with your company information. If you  really want to make a big impression you can give away some nice laptop bags in  great colors with the company info stitched on the outside.<\/p>";
computer += "      <p>Advertising for any business is a must. Adding some promotional merchandise to  the mix is a way of reaching more people and different types of people. Building  a business takes time and work. Once you have it at a certain spot it is smart  to do what it takes to get more brand recognition. You can do it by searching  through our great selection of computer items. Or just call us and we will help  you to find the right product for your next marketing campaign.<\/p><\/td>";
computer += "  <\/tr>";
computer += "  <tr>";
computer += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
computer += "  <\/tr>";
computer += "<\/table>";


var apparel="";
apparel += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
apparel += "  <tr>";
apparel += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Apparel Items<\/td>";
apparel += "  <\/tr>";
apparel += "  <tr>";
apparel += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Wearables makes up 30% of the nearly $20 billion ad  specialty industry annual sales -- and that includes its growing&nbsp;eco-wear  subset. When all wearable categories are combined embroidered and\/or silk  screened apparel is the most effective and popular form of promotional  product.&nbsp; Logo exposure is extremely high, as people  wear promotional apparel at work, to the gym, and everywhere on the weekends. The logoed apparel market offers infinite possibilities. No matter what the  industry, there's a particular type of apparel that's sure to fit its  promotional needs. Whether you typically handle T-shirts for travel agencies,  polo shirts for country clubs, jackets for charities or caps for corporate  catalogs, there's plenty of opportunity to explore new areas of business.<\/p>";
apparel += "      <p class='about_red_header'>Top Five Wearables Categories<\/p>";
apparel += "        <p class='about_red_header'>1. T-shirts <\/p><p>The purpose of a t-shirt is to make a  statement. Starting with the silk screened t-shirt the use of  imprinted apparel has grown into every category of casual dress products.  Industry statistics show an increasing number of custom t shirt giveaways for  corporate promotions and contests. The latest trend is the use of Organic  T-Shirts made of 100% naturally grown cottons. These give companies and  organizations an advertising medium to tell their customers or members that  they care about the environment. <\/p>";
apparel += "        <p class='about_red_header'>2. Polo  Shirts <\/p><p>Handing out polo shirts to your staff can be a great way  of creating a company identity that goes beyond a simple company logo. There is  an enormous variety of polo shirt styles available, and its easy to choose  colors and styles that will complement both your company image and your logo. Promotional polo  shirts can make great incentive gifts for customers and clients.<\/p>";
apparel += "        <p class='about_red_header'>3. Dress Shirts  <\/p><p>The woven shirt  style works for corporate and business casual environment, and in uniform  programs for restaurants, gyms, resorts and outdoor occupations. <\/p>";
apparel += "        <p class='about_red_header'>4. Headwear  <\/p><p>Caps and hats are versatile  promotional items offering a wide range of options to keep your promotions  covered. Choose from beanies, solid caps, visors, bucket hats, performance hats.  Whether your logo hats are used as a reward for a purchase, as a giveaway on a  product launch, a small gift for a special occasion, customized headwear is a  good way to let people know about your brand and your service. Furthermore, why  not wear your own logod cap everywhere you go? The best endorsement a brand  could ever get is from the people who built it and believed in it. <\/p>";
apparel += "        <p class='about_red_header'>5. Outerwear<\/p><p> Top markets for  outerwear are: service industies’ outdoor workers; corporate programs, either  as awards or uniforms; transitional jackets for school programs and resorts;  and the hospitality market<\/p>";
apparel += "      <p>Promotional apparel items can be used by companies to help promote their business and any time they imprint  their business logo onto something that is  creating a unique advertising opportunity for them. Promotional apparel  travels with each customer and therefore takes its own unique travel route. No  two promotional apparel items will go to all the same places and these items  will be worn and will travel all around in hot pursuit of new business for you.<\/p>";
apparel += "      <p>In todays competitive market every company is fighting to gain maximum brand  exposure. In order to achieve brand recognition or recall and feed other  promotional or marketing requirements, companies  giveaway free promotional gifts to everyone and apparel is one of the most  popular options to choose from. <\/p>";
apparel += "      <p>Promotional apparel has earned good recognition  within the competitive market of corporate  promotional items itself. It helps to attract the attention of spectators and  elevates the brand exposure to a higher level. But for long lasting results,  creativity certainly plays a significant role. <\/p>";
apparel += "      <p>Promotional apparels possess high utility and long lasting durability, which in  turn maximizes the period of brand exposure. If your promotional t shirts are creative,  unique or simply comfortable to wear, the receivers would end up wearing them  for months or even years!<\/p>";
apparel += "      <p>You could choose from numerous options under apparels, such as, personalized  sweatshirts, golf apparels, jackets, caps or promotional polo shirts. All you  have to do is imprint your logo and the desired message on the selected product  and gift them to your respective target. For example, customized polo shirts  can be an ideal business gift more than being  merely for golfers. Or custom jackets can be idealistic for everyone in cold  climatic conditions or trendy jackets for the segregated group of young bikers.  Thus, classification of any promotional apparel is a key factor  in its upcoming success.<br \/>";
apparel += "      <\/p><\/td>";
apparel += "  <\/tr>";
apparel += "  <tr>";
apparel += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
apparel += "  <\/tr>";
apparel += "<\/table>";

var magnets="";
magnets += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
magnets += "  <tr>";
magnets += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Magnets<\/td>";
magnets += "  <\/tr>";
magnets += "  <tr>";
magnets += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>There are a lot of innovative  ideas in promotional items and gifts and one such idea that is growing in  popularity is that of the promotional magnets. Customized  promotional magnets are doing the rounds in the market and many firms are using  them to make themselves better known amongst customers, clients, and other  people.<\/p>";
magnets += "      <p>The promotional magnets are available in a host of different shapes and sizes.  The clients can select from the existing shapes or go for totally customized  versions. There are business card magnets, calendar magnets, real estate  magnets, fun shaped magnets, school magnets, and lot more. <\/p>";
magnets += "      <p>The best part about promotional magnets is that they are most likely to be used  by the recipients. The calendar magnets are used for planning schedules and are  quite handy around the office. The same can be said about the business card  magnets that can stick to different type of metal surface and hold papers,  pictures and more. Business card magnets are in great vogue these days.  They are generally given during conference, seminar, exhibitions, trade  meetings and other such corporate events to business clients. It helps create a  good image of the company in the eyes of the recipient.<\/p>";
magnets += "      <p>Promotional magnets are economical as compared to other gift items. They are  utility items. The recipient would love to receive such a nice gift and would  put it on his refrigerator door, cabinet, or other places in his home.  Promotional magnets help in strong brand retention. Every time the user would  look at promotional magnets, he\/she would be reminded of your products and  services. <br \/>";
magnets += "      <\/p><\/td>";
magnets += "  <\/tr>";
magnets += "  <tr>";
magnets += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
magnets += "  <\/tr>";
magnets += "<\/table>";


var keys="";
keys += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
keys += "  <tr>";
keys += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Key Chains<\/td>";
keys += "  <\/tr>";
keys += "  <tr>";
keys += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>For many companies and  organizations, conventional ways of promoting products through the mass might  not be economically viable or efficient. However, using promotional products ";
keys += "        like custom key chains seems to be  the better option. Promotional products help in improving sales, develop  customer relation, enhance the image of the company, and introduce new products  and services. When you wish to be remembered by the customer or an associate,  nothing does it better than promotional gifts that are exceptional and invite  compliments. Business promotional items help to get your company noticed among  the crowd and stay with a prospective client for a long time. One must use  these promotional tricks to ensure repeat business. <\/p>";
keys += "      <p>These days custom key chain is one of the most popular and effectual custom promotional items in the list.  Key chains with brand logo or communication message imprinted on it, serve dual  purposes, along with satisfying its primary function it keeps on reminding the  customer about the brand all the time. Business promotional items like custom  key chain are very significant to impress the customers and to promote your business <br \/>";
keys += "        prospects. Stylish key chains can  easily grasp the attention and favor of the customer for your business. Catchy  designs and colors make the client happy and this helps in brand promotion. <\/p>";
keys += "      <p>We have a great selection of metal, leather, plastic or wood key chains. There  are varieties of different shapes of imprinted key chains like stress ball key  chains, carabiner key chains, compass key chain, light key chain, bottle opener  key chain, photo key chain, tool key chain and many more.&nbsp; The cool collection of custom key chains is sometimes  referred to as promotional gifts or promotional advertising specialties because  they have a function to get your logo noticed. These key chains advertise your  organization, your products and services in a fine manner. This helps to boost  your business prospects by increasing the chances of keeping yourself in the  minds of your clients all the time. So everyone should get into this hip and  cool style of promoting ones organization by maximum utilizing this market  strategy.<br \/>";
keys += "      <\/p><\/td>";
keys += "  <\/tr>";
keys += "  <tr>";
keys += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
keys += "  <\/tr>";
keys += "<\/table>";


var awards="";
awards += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
awards += "  <tr>";
awards += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Recognition & Awards<\/td>";
awards += "  <\/tr>";
awards += "  <tr>";
awards += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>It is only natural that we want to be seen as an individual and that we want to be recognized for our accomplishments. What better way to do that than with plaques, trophies or awards. It is a physical representation of what makes us different and what makes us special.<\/p>";
awards += "      <p>Once you have decided the category to recognize, the hard part of choosing an award begins. There are many great options to consider depending on the reason for the recognition. A piece of art glass engraved with the name of a donor to your project is one thing. A marble plaque for years of service or an optic crystal award for a sports trophy is another consideration.<\/p>";
awards += "      <p>Keeping the recipient in mind as you choose an award is important. You want to be sure that the award you choose is conveying the real appreciation you have for the recipient or winner. Let us say you have decided on a marble plaque to honor your employees for their years of service to the company. The engraving will be filled with silver, gold, or bronze enamel. Marble, granite, and onyx are natural products and will vary between pieces.<\/p>";
awards += "      <p>Or perhaps you have chosen to recognize your biggest donors with a piece of beautiful art glass. These will make for great conversation pieces when they are displayed. Artists use the flowing form and encapsulated air bubbles to make a piece that will really make your donor feel like you have singled out their contribution.<\/p>";
awards += "      <p>Are you searching for the right piece to recognize a competitive achievement? Many sports trophies can be made from optic crystal. Your image and text for etching should be presented in black and white to be sure that it displays perfectly on the crystal. To see ones name etched into crystal is a pleasure that people will always remember. You can even choose crystal in shapes that add to the theme of the award.<\/p>";
awards += "      <p>Whatever medium you choose, just know that your recipient will be honored that you took the time to create a tangible representation of the honor that you have given them. It will remind them of their contribution or accomplishment and will create good feelings about their work for, and with, you and your organization. Recognizing someone&rsquo;s achievement is a great idea and one that has its place in so many arenas.<\/p>";
awards += "      <p><br \/>";
awards += "      <\/p><\/td>";
awards += "  <\/tr>";
awards += "  <tr>";
awards += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
awards += "  <\/tr>";
awards += "<\/table>";


var games="";
games += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
games += "  <tr>";
games += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Games & Toys<\/td>";
games += "  <\/tr>";
games += "  <tr>";
games += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Everyone loves to play and the more professional your office or business";
games += "      is the more interesting the effect of adding promotional toys ";
games += "      to your advertising tools. You will find that even the stuffiest of clients will enjoy picking up that toy with your logo imprinted on it and playing with it.<\/p>";
games += "      <p>There are many of these type items to choose from. You will probably find that many people will pick up and play with a puzzle. They give people something to focus on completely for just a few minutes which is surprisingly relaxing. To get people really relaxed you can have some silly stress toys in the office. These are great to give away to people when they visit the office. Find one that they like from a pile of new ones and send it with them. They will probably keep it on the desk in the office.<\/p>";
games += "      <p>Your business will look like it is a more fun and giving place when you have some promo toys in the office or waiting room. They advertise very well for you after they leave the office. People will keep them and they will continue to see the logo on them for as long as they do.<\/p>";
games += "      <p>Here are lots of the purposes  why promotional toys and sporting deeds are a hit:<\/p>";
games += "      <ul>";
games += "        <li>They supply tension relief. <\/li>";
games += "        <li> They supply entertainment.<\/li>";
games += "        <li> They are unique. <\/li>";
games += "        <li>They enhance creativity. <\/li>";
games += "      <\/ul>";
games += "      <p>          With fun promotional giveaways, you grant recipients the gift of relaxation and entertainmenta gift they shall frequently locate memorable. <\/p>";
games += "      <\/td>";
games += "  <\/tr>";
games += "  <tr>";
games += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
games += "  <\/tr>";
games += "<\/table>";


var sports="";
sports += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
sports += "  <tr>";
sports += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Sports & Outdoors<\/td>";
sports += "  <\/tr>";
sports += "  <tr>";
sports += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Schools, communities, and universities can use sports and outdoors promotional items to build awareness for their athletic teams and to amp support for them. <\/p>";
sports += "      <p>For a team to triumph, its members need to work together toward a goal. However, each player needs to feel that he belongs to the team. Custom team uniforms and athletic apparel such as promotional jackets, sweatpants, sports caps, visors, towels, and tank tops are effective ways to instill a feeling of belonging in athletic members. Team outfits can instill pride in an athlete, especially if he or she is representing a team with an impressive achievement in the field. Similarly, promotional sports bags and water bottles are necessary and practical items to have during training. <\/p>";
sports += "      <p>If you are trying to raise funds to support a team, selling sports and outdoors promotional items with the athletic logo are effective ways to make money. Planned well and done right, they may be more effective in bringing in funds than letters asking for donations. Promotional t-shirts, umbrellas, beach balls, binoculars, compasses and pedometers are some of the merchandise you can customize with the your logo. <\/p>";
sports += "      <p>Promotional items can also be used to spread word about upcoming games. If you need to amp support for a big game, why not give out promotional key tags and stickers to remind family and friends of the big day, custom sports bottles, stadium cups, lunch boxes, coolers, and lunch sacks. Custom large cooler tubs will prepare you for the after-game party. <\/p>";
sports += "      <p>Make the game comfortable with custom loungers, stadium seats, and beach mats. Logo-imprinted towels, blankets, jackets, caps, and other sports and outdoors promotional items will ensure that friends and family will be there for support and encouragement no matter the weather. <\/p><\/td>";
sports += "  <\/tr>";
sports += "  <tr>";
sports += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
sports += "  <\/tr>";
sports += "<\/table>";


var stickers="";
stickers += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
stickers += "  <tr>";
stickers += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Stickers, Decals and Signs<\/td>";
stickers += "  <\/tr>";
stickers += "  <tr>";
stickers += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional stickers are used by individuals, businesses , as well as corporate firms to increase their brand awareness and visibility. Promotional sticker advertising is considered as an effective vehicle for marketing and brand awareness. Promotional stickers can be easily customized and this probably one of the main reasons for its popularity amongst businesses. Most stickers are self adhesive and can be as small as a bumper sticker or as big as acrylic signs or even roll-up &amp; stand banners.<\/p>";
stickers += "      <p>Customized banner actually gives life to a promotional event. Therefore, you must make banners that are colorful and stylish to attract both the young and the adults. At the same time, the variety in sizes and even in shapes can also help you draw clients to participate and take advantage of your promotions. Put images, logos, and a brief information but do not spill all the details in the banner. Tickle their curiosity so they will be enticed to try the things that you are promoting. Let them ask you questions about the ad to create an interaction between the clientele and the person in charge. <\/p>";
stickers += "      <p>Full color banners and signs are widely used as marketing tools today. These colorful banners and signs are very much effective in marketing and this has made many marketing professionals around the planet to rely on these best marketing tools.The main advantage of using the vinyl banners is that they can be reused after a certain period of time which is never possible with the traditional banners. The Custom vinyl banners are mainly focused on long term and repeating advertising campaigns. The lightweight and flexible nature of the vinyl banners makes them the best options for tradeshows. Apart from the above mentioned promotional campaigns, the vinyl banners are also excellent promotional tools for using in Events, Birthday parties, and Anniversary parties. Whatever the application may be, the vinyl banners are very much cost effective and durable options for marketing.<\/p><\/td>";
stickers += "  <\/tr>";
stickers += "  <tr>";
stickers += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
stickers += "  <\/tr>";
stickers += "<\/table>";


var tools="";
tools += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
tools += "  <tr>";
tools += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Tools & Flashlights<\/td>";
tools += "  <\/tr>";
tools += "  <tr>";
tools += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>The best promotional products are the ones that provide use to the recipient, so it is no surprise that promotional tools make excellent promotional items. At Aviva Design, we offer a wide selection of promotional tools. From flashlights, to screwdrivers, to multi-tools, we are sure to have the perfect tools for you marketing needs. Our imprinted promotional tool sets are certain to impress as gifts of appreciation to clients, as well as to tradeshow prospects, employees and others.<\/p>";
tools += "      <p>Promotional tools can make your customer base grow because they can help such a wide variety of users. Customized tools obviously make great promotional items for businesses that make use of them themselves. Home repair companies like painters or carpenters could easily market their business with the use of tools. But many other industries could also benefit from marketing with customized tools too. Realtors can give clients tools like promotional tape measurers that many use to measure furniture and rooms when purchasing new homes. Automotive industry companies, like car dealerships can imprint their company name and logo on any of our tools that are attached to key rings. Any company can also incorporate promotional tools into a marketing campaign by customizing them with a creative tagline that relates to the product.<\/p>";
tools += "    <p>Promotional tools custom imprinted with your company name and logo can also make impressive gifts for clients or employees. Using promotional tools can help you secure increased loyalty towards your brand as a helpful and caring company that gives away practical and user friendly corporate gifts. With so many possible applications of the individual promotional tools within the tool kit, your brand has the capability to gain wide exposure.<\/p><\/td>";
tools += "  <\/tr>";
tools += "  <tr>";
tools += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
tools += "  <\/tr>";
tools += "<\/table>";


var umbrellas="";
umbrellas += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
umbrellas += "  <tr>";
umbrellas += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Umbrellas<\/td>";
umbrellas += "  <\/tr>";
umbrellas += "  <tr>";
umbrellas += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Interesting fact about the promotional umbrellas is that they can be imprinted with your company name, logo, message website address, etc and offered to employees as well as clients. Apart from this, in the exhibitions, seminars, road shows and for various other events, they can also be used to setup a stall. Talking about the promotional umbrellas deeply, they are the right product for the promotion of business that can ensure the longevity of your marketing message.<\/p>";
umbrellas += "      <p>Every time the umbrella is used that means your brand will be exposed not only to highly regarded clients and employees but also to numerous potential clients. Needless to say, they have gained world recognition within a very short span of time as an innovative promotional item. There are different types of promotional umbrellas such as Mini Umbrellas, Auto Close-Open Umbrellas, Automatic Golf Umbrellas, Folding Umbrellas, Vent Umbrellas, and numerous others.<\/p>";
umbrellas += "      <p>Promotional Umbrellas are a highly practical promotional gift. Owing to their multi-season application, they will remind the user of your company or product frequently and for a long time.<\/p>";
umbrellas += "      <p>Promotional umbrellas uses:<\/p>";
umbrellas += "      <ul>";
umbrellas += "        <li>Give them away as holiday gifts - Your company can give away umbrellas as holiday gifts to clients, suppliers and business contacts.<\/li>";
umbrellas += "        <li>Give away promotional umbrellas to your company's stockholders at the annual stockholders' meeting. These are the meetings where the stockholders love to discuss their views and their association with the company, and a useful gift like an umbrella can definitely induce stockholder loyalty.<\/li>";
umbrellas += "        <li>Associate umbrellas with a new product - If your company is launching a new product, give away umbrellas at product launch parties to equate the hardy, sturdy, utilitarian features of the umbrella with your product.<\/li>";
umbrellas += "      <\/ul><\/td>";
umbrellas += "  <\/tr>";
umbrellas += "  <tr>";
umbrellas += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
umbrellas += "  <\/tr>";
umbrellas += "<\/table>";


var t_shirts="";
t_shirts += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
t_shirts += "  <tr>";
t_shirts += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Custom T-shirts<\/td>";
t_shirts += "  <\/tr>";
t_shirts += "  <tr>";
t_shirts += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Custom t-shirts are the most wearable garments today and are best-selling with all body frames and ages. The more people who have your custom t shirt and wear them, the more exposure you will receive for your company.<\/p>";
t_shirts += "      <p>Advertising through custom t-shirts play a significant role in the product promotion. We  can print your logo and a brief line about your services or business on the t-shirts, and it will definitely create a positive impact in the customer's mind. Almost every company around the world is giving custom t-shirts as a gift to their valued customers or to their employees. This is because every time the t-shirt is worn the company gets mileage in the form of reorganization of its brand name and business. <\/p>";
t_shirts += "      <p>Promotional t-shirts can do more than publicize your company's name or logo. The right t-shirt can help solidify your branding and marketing efforts. By choosing t-shirt styles and messages that will appeal to your target audience, you'll be helping to establish your brand in the minds of the public. There is a remarkable range of men's and women's styles. There are 2 basic styles of t-shirts. 100% cotton t-shirts are typically preferred for their durability for longer washings. Blend t-shirts such as 50/50 are the commonest sellers because of price and they are the easiest to take care of after washings. <\/p>";
t_shirts += "      <p>But, you're thinking, a t-shirt is just a t-shirt. Not so at all! There are dozens of styles of t-shirts on the market these days, and most of them appeal particularly to a particular segment of the market. If you understand the market that you want to attract, you can aim your promotional message directly at them by choosing the styles, materials and designs that will make your promotional t-shirts appealing to them.<\/p>";
t_shirts += "      <p>Is your product line meant to appeal to the trendy, young market? Take a clue from the adverts for products that they use. Choose bright, snappy colors and slimmer lines that hug the body to make your promotional message consistent with the market that you want to reach. By fitting your style to their wants, you'll be aligning your brand with their tastes. On the other hand, if you're marketing to eco-conscious folks, you'll want to avoid synthetic fabrics and brightly colored dyes that are often petroleum based. Position your product in their minds with all-natural' naturally grown cotton/flax blends for fabrics, undyed or naturally dyed colors like soft browns, tans, greens and blues. Promotional t-shirts for products aimed at women should be in figure flattering styles with cap sleeves and round necklines. Those aimed at the retirement crew should be high quality, traditionally styled and very, very comfortable.<\/p>";
t_shirts += "      <p>Check out our wide selection of t-shirts styles and colors. We will help you find the right t-shirt for the right occasion!<\/p>";
t_shirts += "     <\/td>";
t_shirts += "  <\/tr>";
t_shirts += "  <tr>";
t_shirts += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
t_shirts += "  <\/tr>";
t_shirts += "<\/table>";

var dress_shirts="";
dress_shirts += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
dress_shirts += "  <tr>";
dress_shirts += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Dress Shirts<\/td>";
dress_shirts += "  <\/tr>";
dress_shirts += "  <tr>";
dress_shirts += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Power dressing is popular among  both established executives and the younger set of employees. Whether your  target market falls within the senior level or the yuppie range, dress shirts are the ideal  giveaway. It goes beyond taking advantage of this fashion trend. Dress shirts  also underscore your company's professionalism.<\/p>";
dress_shirts += "      <p> Pick out a dress shirt that you can best identify with your brand. Deciding  factors can include color, style and fabric. Of the three, fiber should weigh  the most as it determines the quality of your promotional dress shirt.<\/p>";
dress_shirts += "      <p> Here are a few facts that could help you find out more about fabrics. While  there are a lot of other fabric types available out there, these are the ones  most used for promotional dress shirts.<\/p>";
dress_shirts += "      <p> <strong style=\"color:#AC2A24;\">Cotton<\/strong> - A soft fiber that grows  around the seed of the cotton plant. Cotton fabric is soft and breathable,  making it the most widely used natural-fiber today. It offers a  high degree of strength, durability and absorbency.<\/p>";
dress_shirts += "      <p> <strong style=\"color:#AC2A24;\">Denim<\/strong> - A rugged cotton twill  textile traditionally colored blue (or stonewashed for a lighter look). It is a  fiber used for casual dress shirts.<\/p>";
dress_shirts += "      <p> <strong style=\"color:#AC2A24;\">Pima Cotton<\/strong> - One of the world's top  graded cottons, it is traditionally grown in the southwest United States  by Pima Indians. The long fibers of this cotton give it a luxurious hand and  added durability.<\/p>";
dress_shirts += "      <p> <strong style=\"color:#AC2A24;\">Polyester<\/strong> - A synthetic fiber which  offers superior strength and excellent resilience. It is also noted for its  soft, luxurious feel. Low absorbency allow it to dry quickly.<\/p>";
dress_shirts += "      <p> <strong style=\"color:#AC2A24;\">Poplin<\/strong> - Medium- to heavy weight, durable fabric made of cotton  or cotton blends. The rigid structure is a result of its tight weaving.  Promotional dress shirts of this material are often easy to iron and wrinkle-resistant.<\/p>";
dress_shirts += "      <p> <strong style=\"color:#AC2A24;\">Rayon<\/strong> - This artificial silk is  regenerated from cellulosic fiber. It can imitate the look and feel of natural  fibers. Generally, rayons have a silky hand and a shiny luster. Rayon does not  insulate heat, making it the ideal fabric for hot climates. It does, however,  have low elastic recovery and durability.<\/p>";
dress_shirts += "      <p> <strong style=\"color:#AC2A24;\">Silk<\/strong> - A natural protein fiber  obtained from cocoons made by the silkworm larvae. It is prized for its  brilliant sheen resulting from the fiber's prism-like structure. Silk is soft  yet highly durable and absorbent.<\/p>";
dress_shirts += "      <p> Call Aviva Design, and we will help you find the right material and the right  style dress shirt. <\/p><\/td>";
dress_shirts += "  <\/tr>";
dress_shirts += "  <tr>";
dress_shirts += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
dress_shirts += "  <\/tr>";
dress_shirts += "<\/table>";

var fleece="";
fleece += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
fleece += "  <tr>";
fleece += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Fleece<\/td>";
fleece += "  <\/tr>";
fleece += "  <tr>";
fleece += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional clothing of all types  is something that all people seem to appreciate. It lasts for a long time and  can be worn for ages. People really like to be given an article of clothing,  like a t-shirt, polo shirt, hat, fleece jacket or a sweatshirt from a business that they go to a lot. It will  make them feel like they are being thanked for their small part in the  company's growth.<\/p>";
fleece += "      <p> Promotional apparel items can really dress up your business as well. By having  employees wear promotional apparel items not only will they have a clean and  neat business appearance all year long, but they will also be a walking  advertisement when they are running all around town. And it is not only your  employees who should wear the promotional apparel items, but it is an excellent  idea if you as the business owner also wear  promotional apparel everywhere you go, serving as a walking advertisement for  your own business.<\/p>";
fleece += "      <p> You can use these promo items for some excellent gifts during the holidays.  There are sweatshirts that are soft and cozy. These will be worn all during  winter. When it is cool out there is nothing quite like the cozy feeling of a  soft sweatshirt. They are great to use because you can print on the back and  front, and even the sleeves if you want to.<\/p>";
fleece += "      <p> Embroidered fleeces are excellent as a gift, both corporate and personal. They  are fashionable, useful and  good-looking products. Fleece is used to produce jackets, exercise clothes,  sweatpants, jogging bottoms and sweaters among other items. Fleece jackets are  perfect through the fall and spring months when days are cool and the nights  are even cooler. There are many types of fleece jackets, which come with  additional linings which can be worn, or they can be removed from the jacket in  layers. Full zip and quarter zip fleece jackets are a great way to stay warm  and dry. One of the most popular trends of fleece jackets is the pullover,  which can be worn alone, or layered with other items.<\/p>";
fleece += "      <p> Fleece jackets are real effective to beat the serve forces of the cold easily  without the need of wearing additional layers. Fleece jackets can be worn  through many seasons as they are a classic fashion and therefore choosing a  jacket that has been created from a excellent manufacturer or  designer can be an effective way to  ensure that you are going to be able to wear the jacket, season after season. <\/p><\/td>";
fleece += "  <\/tr>";
fleece += "  <tr>";
fleece += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
fleece += "  <\/tr>";
fleece += "<\/table>";
fleece += "";


var headwear="";
headwear += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
headwear += "  <tr>";
headwear += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Headwear<\/td>";
headwear += "  <\/tr>";
headwear += "  <tr>";
headwear += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Caps and hats are versatile promotional items offering a wide range of options to keep your promotions covered. Choose from chic beanies, trimmed caps, solid caps, visors, bucket hats, kids caps, baseball caps in different colors and styles. There will surely be a cap or hat to suit your objective. <\/p>";
headwear += "      <p>Your logo can be embroidered or silk-screened, depending on the material of the cap or hat you choose or the complexity of your logo or artwork. <\/p>";
headwear += "      <p>Embroidery offers a high-quality rendition of your logo, bringing you value for money. Embroidered designs also last long, ensuring your brand more exposure. Silk-screening is a cost-effective way of branding large quantities of caps and hats and promotional items in general. <\/p>";
headwear += "      <p>Promotional items such as caps and hats are great vehicles for brand promotion. They are worn frequently and warmly appreciated by recipients. Caps and hats are also good fashion accessories, completing an ensemble. With such fancy headwear sporting your logo, people are more likely to take a second look. <\/p>";
headwear += "      <p>Whether your logo-imprinted caps and hats and other promotional items are used as a reward for a purchase, as a giveaway on a product launch, a small gift for a special occasion, customized headwear is a good way to let people know about your brand and your service. Furthermore, why not wear your own logoed cap everywhere you go? The best endorsement a brand could ever get is from the people who built it and believed in it. <\/p><\/td>";
headwear += "  <\/tr>";
headwear += "  <tr>";
headwear += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
headwear += "  <\/tr>";
headwear += "<\/table>";

var outerwear="";
outerwear += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
outerwear += "  <tr>";
outerwear += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Outerwear<\/td>";
outerwear += "  <\/tr>";
outerwear += "  <tr>";
outerwear += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional jackets are excellent for promoting clubs, organizations and businesses. Although cost wise they are at the higher end of promotional clothing, they are often necessary and almost always look great printed or embroidered. You may be interested to learn that there are promotional jackets that can be purchased within most budgets.<\/p>";
outerwear += "      <p> <b style=\"color:#AC2A24;\">Wind Breakers:<\/b> The least expensive jackets on the market. These are popular for people that live in windy areas where it is not to cold. Wind breakers are popular with rowing and yacht clubs. There are also waterproof versions that are good for companies with employees who work outside a lot.<\/p>";
outerwear += "      <p> <b style=\"color:#AC2A24;\">Waterproof All Weather Jackets: <\/b>Slightly more expensive than the before mentions options, these jackets are often available in a range of popular colors. If you are purchasing these jackets for a hiking or boating club where weather conditions can often be quite cold and wintery, you will want to dig a little deeper in your pockets to ensure you get a jacket that will offer sufficient protection from the elements. More expensive jackets will be double lined and manufactured out of warmer higher quality material.<\/p>";
outerwear += "      <p><b style=\"color:#AC2A24;\"> Safety Jackets:<\/b> There is a large range of hi-viz jackets available which are perfect for young children and adults that work in dangerous areas such as on the motorway. They are also excellent as part of a car safety kit.<\/p>";
outerwear += "      <p> <b style=\"color:#AC2A24;\">Fleeces:<\/b> Perhaps not officially a jacket, fleeces can still do the same job.  They are not very water resistant but they are nice to have when it is cold and not wet.  Many companies purchase their staff logo embroidered fleeces and jackets to ensure they are always properly kitted out regardless of the weather.<\/p>";
outerwear += "      <p> We can put your logo and a brief line about your services or business on a jacket, and it will definitely create a positive impact in the customer&rsquo;s mind. Every time the jacket is worn, the company gets mileage in the form of reorganization of its brand name and business. <\/p>";
outerwear += "      <p>Customized jackets can do more than publicize your company's name or logo. By choosing the right jacket and the message that will appeal to your target audience, you'll be helping to establish your brand in the minds of the public.<\/p>";
outerwear += "      <p><\/p><\/td>";
outerwear += "  <\/tr>";
outerwear += "  <tr>";
outerwear += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
outerwear += "  <\/tr>";
outerwear += "<\/table>";

var polo_shirts="";
polo_shirts += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
polo_shirts += "  <tr>";
polo_shirts += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Polo Shirts<\/td>";
polo_shirts += "  <\/tr>";
polo_shirts += "  <tr>";
polo_shirts += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>We usually think of promotional items as something that businesses give away to promote their company and products, but promotional polo shirts can be used in another way to help give your company an unmistakable identity. Promotional polo shirts can identify your staff at events, give them a uniform, neat appearance in your store, restaurant or pub, and identify them if they do home visits or work outside the office.<\/p>";
polo_shirts += "      <p class='about_red_header'>Use Promotional Polo Shirts Instead of Uniforms<\/p>";
polo_shirts += "      <p>When you dress your staff in polo shirts in the company colors with the company logo, you present a neat, casual and unified front to your customers. Polo shirts are available in a wide variety of styles and colors, so it's easy to choose a color combination and style that best suits your company's image and color scheme. The logo can be embroidered or screen printed, and placed on the breast pocket, chest or sleeve. With all the different variable that you can choose, it's easy to create a distinctive look for your staff.<\/p>";
polo_shirts += "      <p class='about_red_header'>Use Promotional Polo Shirts to Identify Event Staff <\/p>";
polo_shirts += "      <p>If you're hosting a conference, trade show or promotional event, promotional polo shirts can help your guests easily identify those who are staffing the event. It's an inexpensive way to make your promotional staff stand out from the crowd so that your guests can easily find those who can answer their questions. And the polo shirts themselves make welcome thank you gifts to volunteers and employees who give their time to work at your event and make it a success.<\/p>";
polo_shirts += "      <p class='about_red_header'>Identify Your Staff Offsite<\/p>";
polo_shirts += "      <p>Does your company make home repair or offsite visits? Logo polo shirts can help create a brand image for your service, and maintain a neat, professional appearance for your company. Customized polo shirts with your company's logo offer good publicity for your business.<\/p>";
polo_shirts += "      <p class='about_red_header'>Sell Promotional Polo Shirts with Your Company's Brand<\/p>";
polo_shirts += "      <p>Some businesses inspire fierce customer loyalty. Pubs and restaurants, specialty stores and the like often have clientele who are proud of their favorite spot and talk it up wherever they go. Give your customers the option to sport your name on their chest with a distinctive polo shirt bearing your company logo, or sell them to benefit charity. You'll benefit from the exposure of your brand name and the endorsement of your best customers.<\/p>";
polo_shirts += "      <p class='about_red_header'>Give Branded Polos to Employees as Incentives<\/p>";
polo_shirts += "      <p>Promote employee spirit and loyalty by giving logo polos to your employees as incentives. You can get more mileage from your employee incentive program by offering something that your employees will be proud to wear. One company gives out Diamond Club company polos to each of their employees who top 100 sales in a week. The polos are sought after because they confer status and recognition on those who earn them.<\/p>";
polo_shirts += "      <p>The most common location of embroidery for golf shirts is the left chest but it is not the only location. Other choices of embroidery locations would be the left sleeve, right chest, right sleeve and yoke.<\/p>";
polo_shirts += "      <p>Embroidered poll shirts are provided in many diverse types of fabrics and cuts. Polo shirts that are made of cotton pique have been shown to be very good in allowing free circulation of air in the body which allows the body to breathe well. Moisture wicking material is one of the most favorite today. Moisture wicking capabilities are designed to control the amount of sweat, allowing the shirt to stay drier and less clingy. However, it is a little more costly but it is cooler and in most cases has the best look after multiple washings.<\/p>";
polo_shirts += "      <p>For the perfect combination of style, comfort and quality, choose a golf shirts made of what is called ringspun combed cotton two-ply double mercerized material. Lightweight and durable, most double mercerized shirts have a slight shine to them, providing for a clean, crisp look. The shirts look expensive and generally are. Durability and versatility ensure that these shirts are well-worth the cost. <\/p>";
polo_shirts += "      <p>Still other golf shirts offer UPF protection from the sun. Some shirts have a no-curl collar quality. Some are made from polyester and some from rayon. Certain brands even come with stain-resistant features. The variety of polo shirts available is staggering. And they all offer unique and practical characteristics.<br \/>";
polo_shirts += "        <br \/>";
polo_shirts += "        Embroidered polo shirts are a big resource to promote your services and products. No matter if you are using them as a uniform for your employees, as a gift or even by selling them. Which polo shirt you should buy really depends on what is important to you. The great news is that no matter what feature you find most appealing, there is a shirt available that will suit you perfectly. <\/p>";
polo_shirts += "      <p>Polo shirts are made of pique and good quality cotton, this combination has been shown to be very good in allowing free circulation of air in the body which allows the body to breathe well. <br \/>";
polo_shirts += "      <\/p>";
polo_shirts += "      <p><\/p><\/td>";
polo_shirts += "  <\/tr>";
polo_shirts += "  <tr>";
polo_shirts += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
polo_shirts += "  <\/tr>";
polo_shirts += "<\/table>";

var workwear="";
workwear += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
workwear += "  <tr>";
workwear += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Workwear<\/td>";
workwear += "  <\/tr>";
workwear += "  <tr>";
workwear += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Regardless of the industry you will notice that now there is much more of a trend towards branded workwear than there was in the past. With business owners focusing more on the overall display of their business to the world rather than concentrating purely on what they offer to their customers. With this change comes a greater appreciation by customers for professionals in any area to be well groomed.<\/p>";
workwear += "      <p>As more and more companies improve their business branding and awareness they are taking advantage of advertising tools. One of the ways that this is being achieved is with the use of branded work wear and uniforms for staff. The embroidering of business shirts, jackets, overalls, caps and the like to brings together the overall business package. <\/p>";
workwear += "      <p>The benefits of having your corporate image on work wear are numerous. Your staff will project a company image as professional and you also instill a sense of pride in your employees when they have good quality workwear as part of their uniform. The benefit to the employer therefore is a more professional business image as well as added advertising with the branding aspect.<\/p>";
workwear += "      <p>You can of course choose to go with a printed brand option over an embroidered option however the advantages of embroidered work wear is that there is less fading and wearing evident over time which means that good quality clothing and embroidery will be able to be used for a longer period by your employees than printed alternatives.<\/p>";
workwear += "      <p><\/p><\/td>";
workwear += "  <\/tr>";
workwear += "  <tr>";
workwear += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
workwear += "  <\/tr>";
workwear += "<\/table>";


var accessories="";
accessories += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
accessories += "  <tr>";
accessories += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Accessories<\/td>";
accessories += "  <\/tr>";
accessories += "  <tr>";
accessories += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Promotional towels and blankets help promote your branding and are versatile items to embroider. Use one of our custom imprinted towels and your promotion is sure to be a success. Or put your company name or logo on a blanket, which will provide maximum exposure for your business while they are being used. Leave a lasting impression on your clients with personalized fleece blankets.<\/p>";
accessories += "      <p>We carry a variety of custom towels including logo golf towels, promotional bath and custom beach towels and printed gym and golf towels. Need a stylish and comfortable gift? Try embroidering one of our luxurious bath towels. When you add your company name to a sophisticated and stylish bag or beach towel, you instantly make your brand more visible to the general public. Looking for a great giveaway at your next golf outing? Give away one of our great golf towels. <\/p>";
accessories += "      <p>One of the biggest advantages of more useful and durable promotional items is the long-term branding presence your company will enjoy. When people find your promotional item useful, they will incorporate it into their lives reminding both themselves, as well as others around them, about the value of your company.<\/p>";
accessories += "<\/td>";
accessories += "  <\/tr>";
accessories += "  <tr>";
accessories += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
accessories += "  <\/tr>";
accessories += "<\/table>";

var activewear="";
activewear += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
activewear += "  <tr>";
activewear += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Activewear<\/td>";
activewear += "  <\/tr>";
activewear += "  <tr>";
activewear += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>The school mascot is an esteemed symbol for its students, teachers and the rest of the faculty through which they associate themselves to the institution and take pride in being a part of it. It is this symbol that the students grow up with and treasure as an everlasting memento which is etched in their minds for the years to come. Cheering for their sports team, wearing apparel items with the school mascot generates a school spirit in the students and encourages them to perform or achieve the best for their institution. There are various tools available which can help demonstrate the school spirit lying within each student. The advertising and marketing industry has a multitude of school-related products to facilitate building a brand identity for the institution and creating a whole school spirit around it.<\/p>";
activewear += "      <p>Apparel items are the best ways to promote the school spirit and show support for the school. T-shirts, caps, sweatshirts carrying school name, logo or emblem, printed or embroidered, in the school&rsquo;s colors can be made available to the students, faculty and alumni for various school celebrations to bring about their love for the school.<\/p>";
activewear += "      <p>When you get a team together for any sport, there are some things you need to identify your team members from others you are playing against. One of those things is custom sport apparel for your team. This may mean team uniforms, team jackets, sport bags, headwear or simply t-shirts or warm up suits. We can customize your jerseys to be as unique as your team members. We offer ladies only sport apparel for your female team, that includes t-shirts, fleece, active wear and knits. <\/p><\/td>";
activewear += "  <\/tr>";
activewear += "  <tr>";
activewear += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
activewear += "  <\/tr>";
activewear += "<\/table>";

var babies="";
babies += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
babies += "  <tr>";
babies += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Babies & Kids Apparel<\/td>";
babies += "  <\/tr>";
babies += "  <tr>";
babies += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>An item that not a lot of companies think about for advertising but one that makes sense is promotional baby clothing. Even though it may seem like an item that may not be a good item to put your company name and logo on, it's one of the best items. <\/p>";
babies += "      <ul>";
babies += "        <li> It's something that is used - promotional items should always be useful, and that is one thing that printed baby clothing is. Every parent is happy to get quality clothing for their baby when they become parents for the first time, and they will be happy to get some with a company logo on it.<\/li>";
babies += "        <li> It's something different - most of the promotional clothing that is given out by companies is made for adults or for older kids. But when you offer promotional baby clothing, you are doing something that other companies don't do. <\/li>";
babies += "      <\/ul>";
babies += "      <p> As well as being something that will be used and something that is different, promotional baby clothing also has quite a few opportunities to use it. <\/p>";
babies += "      <ol>";
babies += "        <li> <strong style=\"color:#AC2A24;\">Conventions<\/strong> - conventions are a great place to hand out promotional baby clothing such as hats, socks and other small items. These items are low cost and they are something that every baby can use. They also come in a variety of sizes and colors, so that there are lots of them to choose from. <\/li>";
babies += "        <li> <strong style=\"color:#AC2A24;\">Employees<\/strong> - when one of your employees is going to have a baby, or has had a baby, a selection of printed baby clothes would make a really nice gift for them. Every new parent can always use more baby clothes, and when you give them clothes that have the company logo on them it's free advertising. You can also give the new baby a piggy bank as part of the gift.<\/li>";
babies += "        <li> <strong style=\"color:#AC2A24;\">Clients<\/strong> - what better way to congratulate one of your clients on the birth of their new baby than by giving them a selection of your printed baby clothes? It will show them that they are a valued client and that you want to help celebrate the new arrival with them. A nice selection of printed baby clothes and a piggy bank would make a very nice gift. <\/li>";
babies += "        <li> <strong style=\"color:#AC2A24;\">Company events<\/strong> - when your company is having something like a picnic where there will be door and raffle prizes, one of the raffle prizes can be a baby gift set that includes printed baby clothing and a piggy bank. <\/li>";
babies += "      <\/ol>";
babies += "      <p>Promotional baby clothing is an item that many companies can benefit from. Even if it's not given out at conventions or exhibitions, it makes a really nice item to give to clients or to employees who have had a baby. <\/p>";
babies += "      <p>It's something that not every company offers, so when companies do offer it, it's something new and different. Companies who offer printed baby clothing stand out from the rest and are greatly appreciated by their employees and clients for their thoughtfulness. Printed baby clothing is an investment in your company's future.<\/p><\/td>";
babies += "  <\/tr>";
babies += "  <tr>";
babies += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
babies += "  <\/tr>";
babies += "<\/table>";

var eco_friendly2="";
eco_friendly2 += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
eco_friendly2 += "  <tr>";
eco_friendly2 += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Eco-Friendly Apparel<\/td>";
eco_friendly2 += "  <\/tr>";
eco_friendly2 += "  <tr>";
eco_friendly2 += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Using environmentally friendly promotional products is one of the easiest ways you can support sustainability.<\/p>";
eco_friendly2 += "      <p> Due to the remarkably increasing trend of being environmental friendly, American companies are now also opting for eco-friendly promotional products. Going green by gifting eco-friendly, custom promotional items to potential customers, will establish an added positivity to your first impression.<\/p>";
eco_friendly2 += "      <p> The promotional marketing industry is going &quot;green&quot; with a sudden boom in eco-friendly promotional products and promotional corporate gifts which are increasingly becoming popular among the corporate sector. Eco-friendly not only help companies in creating effective advertising campaigns but also help them spread the word about their social values and concern towards conserving earth's natural resources.<\/p>";
eco_friendly2 += "      <p>Today, you can find the trendy and hip clothing items made from eco-friendly fibers such as bamboo, corn, and organic cotton. Clothes made from these fabrics are renewable and reusable and generate less pollution than conventional materials at the time of production. Plus, the eco-friendly apparels are popular corporate gifts since they minimize chemicals and pesticides that come in contact with your body.<\/p>";
eco_friendly2 += "      <p>As a more sustainable resource, bamboo is typically combined with raw materials like cotton or polyester for apparel with as much as 50-70% of the content coming from bamboo. Bamboo Apparel has the same look and feel of traditional apparel but offers the benefit of being eco friendly. Another great Eco Friendly Apparel option is Recycled Apparel. Recycled materials, such as polyester, is combined with raw material like cotton with 50-90% of the content coming from the recycled source. <\/p>";
eco_friendly2 += "      <p>In both cases, there are a wide range of apparel options from recycled t-shirts, polos and jackets to recycled performance apparel with anti-bacterial properties. Like traditional apparel, recycled clothing can be customized with company logos and designs using a variety of embroidery and silk screening techniques. <\/p><\/td>";
eco_friendly2 += "  <\/tr>";
eco_friendly2 += "  <tr>";
eco_friendly2 += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
eco_friendly2 += "  <\/tr>";
eco_friendly2 += "<\/table>";

var ladies_apparel="";
ladies_apparel += "<table width='965' border='0' cellspacing='0' cellpadding='0'>";
ladies_apparel += "  <tr>";
ladies_apparel += "    <td style='background-image:url(skins\/default\/en\/images\/bottom_header_bg.gif); background-repeat: no-repeat; height: 50px; padding-left: 25px; vertical-align: top; padding-top: 9px; color: #FFFFFF; font-size: 20px;'>About Ladies Apparel<\/td>";
ladies_apparel += "  <\/tr>";
ladies_apparel += "  <tr>";
ladies_apparel += "    <td  style='padding: 0px 30px 5px 45px; background-image: url(skins\/default\/en\/images\/about_aviva_bg.gif);'><p>Imprintable ladies garments are sure to make any promotion a success. At Aviva Design, we carry a wide variety of stylish ladies&rsquo; apparel in many different fabrics, designs, colors, and sizes, so that you always get the right product. Our quality apparel includes: T-shirts, sweatshirts, woven shirts, polo shirts, golf apparel, fleece jackets, eco wear, jackets, activewear shirts, hats and so much more. No matter what apparel item you choose, your brand is sure to get noticed when you personalize apparel with your company&rsquo;s name, logo, advertising message, or special theme. Whether you have your own design in mind or you&rsquo;d like us to develop a look for you, our expert designers and production staff is dedicated to bringing you high quality corporate apparel delivered on time and on budget.<\/p>";
ladies_apparel += "    <p>We offer a wide variety of styles and colors in our Women's T-Shirts section, so you're sure to find the right fit for your company. Browse our online selection of ladies golf shirts, ladies polo shirts, embroidered golf shirts and other ladies promotional merchandise today!<\/p><\/td>";
ladies_apparel += "  <\/tr>";
ladies_apparel += "  <tr>";
ladies_apparel += "    <td><img src='skins\/default\/en\/images\/about_aviva_bottom.gif' width='965' height='24' \/><\/td>";
ladies_apparel += "  <\/tr>";
ladies_apparel += "<\/table>";
