
$(document).ready(function() {
	$('div.demo-show2  > div').hide();
	$('div.demo-show2 > h3').click(function() {
  
		var title = '';
		var linkSection = '';
		
		if($(this).find('span:first').length != 0) {
			 linkSection = 'featuredstores/';
			title = $(this).find('span:first').clone().children().remove().end().text().replace(/-/g,'').trim().replace(/!/g, '').replace(/&/g, '').replace(/%/g, '').replace(/$/g, '').replace(/#/g, '').replace(/@/g, '').replace(/^/g, '').replace(/ /g, '-');
		}
		else {
			title = $(this).text().replace(/-/g,'').trim().replace(/!/g, '').replace(/&/g, '').replace(/%/g, '').replace(/$/g, '').replace(/#/g, '').replace(/@/g, '').replace(/^/g, '').replace(/ /g, '-');
		}
			
		var trackingLink = '_gaq.push([\'_trackPageview\', \'/sitelinks/' + linkSection + title + '/open\'])';
	
		if($(this).hasClass('style-minus'))
		{
			$(this).removeClass('style-minus');
		 	$(this).addClass('style-plus');
		 	//add the tracking url back
			$(this).attr('onclick', trackingLink);
		} 
		else 
		{
			$(this).removeClass('style-plus');
  		$(this).addClass('style-minus');
  		//remove the tracking url
  		$(this).attr('onclick','');
		}
	  	  
		$(this).next('div').slideToggle('fast')
		.siblings('div:visible').slideUp('fast');
		
  });
});
