$(document).ready(function(){
	$('#linkcat-2 a').click(function() {
		var label = $(this).text();
		var ssurl = $(this).attr('href');
		var ssid  = ssurl.substring(31);
		if($('body').hasClass('home')) {
			$.ajax({
				url: "/wp-content/themes/paradise_pictures/slideshows.php",
				data: 'id='+ssid,
				cache: false,
				success: function(html){
					$('#slideshowContent').html(html);
				}
			});
			return false;
		} else {
			window.location = '/index.php?ssid='+ssid;
			return false;
		}
	}); // end #linkcat-2 a click
});

