function showTopLinks(type) {
	var searchtext = $('#q').val();
	if (type == 'Local') {
		if (searchtext != '') {
			href = 'http://maps.google.com/maps?q='+ searchtext;
		} else {
			href = 'http://maps.google.com';
		}
		var newWindow = window.open(href, '_blank');
		newWindow.focus();
	} else if (type == 'images') {
		if (searchtext != '') {
			href = 'http://images.google.com/images?q='+ searchtext;
		} else {
			href = 'http://images.google.com';
		}
		var newWindow = window.open(href, '_blank');
		newWindow.focus();
	} else if (type == 'video') {
		if (searchtext != '') {
			href = 'http://www.youtube.com/results?search_type=&search_query='+ searchtext;
		} else {
			href = 'http://www.youtube.com';
		}
		var newWindow = window.open(href, '_blank');
		newWindow.focus();
	} else if (type == 'shopping') {
		if (searchtext != '') {
			href = 'http://www.ebay.com/sch/?_nkw=' + searchtext;
		} else {
			href = 'http://www.ebay.com';
		}
		var newWindow = window.open(href, '_blank');
		newWindow.focus();
	} else if (type == 'answers') {
		if (searchtext != '') {
			href = 'http://www.wikihow.com/Special:LSearch?search='+ searchtext;
		} else {
			href = 'http://www.wikihow.com';
		}
		var newWindow = window.open(href, '_blank');
		newWindow.focus();
	} else if (type == 'News') {
		href = 'http://news.google.com/news?q=' + searchtext;
		var newWindow = window.open(href, '_blank');
		newWindow.focus();
	}
}
