function specView() {	

	
	$('#s275_tableView').hide();
	var viewHandle = $('.s275_viewTab').find('a');
	viewHandle.eq(0).click(function()	{
		$('#s275_bulletView').show();
		$('#s275_tableView').hide();
		$('#view275Bul').attr("class",$('#view275Bul').attr("class").replace("off","on"));
		$('#view275Tab').attr("class",$('#view275Bul').attr("class").replace("on","off"));
		return false;
	});
	viewHandle.eq(1).click(function()	{
		$('#s275_bulletView').hide();
		$('#s275_tableView').show();
		$('#view275Bul').attr("class",$('#view275Bul').attr("class").replace("on","off"));
		$('#view275Tab').attr("class",$('#view275Bul').attr("class").replace("off","on"));
		return false;
	});
	$('.s275ex').mouseover(function()	{
		$(this).parent().find('.s275_tooltip').show();
	});
	$('.s275_tooltip .closer img').click(function()	{
		$(this).parent().parent().hide();
	});
}
