// JavaScript Document
var checVar = "";
function show(value)
{	
	if(checVar != value)
	{
		hidediv();
	}	
	
	if(value == 1)
	{
		document.getElementById('slickbox').innerHTML = "<div style='margin-left: 195px; padding-left: 5px; padding-right: 5px; padding-top: 5px;'><a href='ebay.php'> Ebay integration </a>| <a href='paymentGateways.php'> Payment Gateways </a> | <a href='sms.php'> SMS integration </a></div>";
		checVar = 1;	
		$('#slickbox').show('slow');
		return false;	
	}
	if(value == 2)
	{
		document.getElementById('slickbox').innerHTML = "<div><a href='ecomSol.php'> Ecommerce solutions </a>| <a href='ecomFeature.php'> Ecommerce features </a> | <a href='ourApproach.php'> Our approach </a> | <a href='broWebsite.php'> Brochure websites </a> | <a href='broFeature.php'> Brochure features </a></div>";
		checVar = 2;	
		$('#slickbox').show('slow');
		return false;	
	}
	if(value == 3)
	{
		document.getElementById('slickbox').innerHTML = "<div><a href='emailMkt.php'> Email marketing </a>| <a href='sponsoredAd.php'> Sponsored advertising </a> </div>";
		checVar = 3;	
		$('#slickbox').show('slow');
		return false;	
	}


}
function hidediv()
{	
	$('#slickbox').hide('slow');
	return false;		
}
