function showCategory ( category ) {

	// decide

	if ( parent.activeCategory != '' ) {

		// we have to close a market

		var target = document.getElementById( activeCategory );

		target.style.display = 'none';

	}

	

	// open up market

	var target = document.getElementById( category );

	target.style.display = '';

	

	// set new market

	parent.activeCategory = category;

	

	// return

	return false;

}



function show_vertical ( category ) {

	// decide

	if ( parent.activeMarket != '' ) {

		// we have to close a market

		var target = document.getElementById( activeMarket );

		target.style.display = 'none';

	}

	

	// open up market

	var target = document.getElementById( category );

	target.style.display = '';

	

	// set new market

	parent.activeMarket = category;

	

	// return

	return false;

}

function redirect ( value ) {
	if ( value != '' ) {
		window.location.href = value;
	}
}


function show_front_verticals ( ) {
	var target = document.getElementById('specialTitle');
	document.getElementById('specialTitleFirst').style.display = 'none';
	document.getElementById('specialTitleSecond').style.display = '';	
}

function openReadMore ( url ) {
	return '<p class="moreLink"><a href="' + url + '" id="moreLinkText" class="btn-slide">Read more</a></p><div id="panel" style="display:none;">';
}

function closeReadMore ( ) {
	return '</div>';
}

