Problem adding a link into a function

<script language="javascript">
function byId(id) 
{ return document.getElementById ? document.getElementById(id) : document.all[id]; } 
var prevLink = ""; function changeActiveStates(ele) { if (prevLink) byId(prevLink).className 
= ""; ele.className = 'activate'; prevLink = ele.id; } 
function showhide(divid, state){
document.getElementById(divid).style.display=state
}
          </script>   
    
    
	<script type="text/javascript">  
		$(function(){
			$.fn.supersized.options = {  
				startwidth: 640,  
				startheight: 480,
				vertical_center: 1,
				slideshow: 1,
				navigation: 1,
				thumbnail_navigation: 0,
				transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
				pause_hover: 0,
				slide_counter: 1,
				slide_captions: 1,
				slide_interval: 900000,
				slides : [
				
				<!--{image : 'slides/SAMPLE.jpg', title : 'SAMPLE', url : 'http://www.SAMPLE.com/'},-->

				
					{image : 'slides/1.jpg', title : 'ArtMB : Bon Voyage'},
					{image : 'slides/21.jpg', title : 'Fitzgeralds Las Vegas : Luck-o-Motion'},
					{image : 'slides/2.jpg', title : 'Seminole & Hardrock Casinos : Million Dollar Bingo 30 second spot - Winner of Silver Telly 2010 <a href="#" onclick="changeActiveStates(this);showhide('apVideo', 'table');showhide('apContact', 'none');return false">Watch The Spot</a>'}, 
					{image : 'slides/9.jpg', title : 'Hollywood Casinos : Cash & Caddy Promotional Logo'},
					{image : 'slides/18.jpg', title : 'Chefs Table : Identity'},
					{image : 'slides/5.jpg', title : 'RedHawk Casino : Mini Outdoor'},
					{image : 'slides/6.jpg', title : 'Aroma Café : Identity'},
					{image : 'slides/4.jpg', title : 'Seminole Casinos : Lexus Giveaway Outdoor'},
					<!--{image : 'slides/8.jpg', title : 'Good Times Buffet : Identity'},-->
					{image : 'slides/10.jpg', title : 'ArtMB : National Print Campaign'},
					{image : 'slides/11.jpg', title : 'Red Hawk Casino : Live The Life - Winners Campaign'},
					{image : 'slides/12.jpg', title : 'Hollywood Casinos : 3rd Anniversary Logo'},
					<!--{image : 'slides/14.jpg', title : 'Jason Hardwick : 3D Self Promotion'}, -->
					{image : 'slides/15.jpg', title : 'Roadhouse Casino : Notorious Good Times'},
					{image : 'slides/16.jpg', title : 'Hollywood Casino : Superstar Reels Logo'},
					{image : 'slides/17.jpg', title : 'Hollywood Casino : CHIPS Web banner Campaign'},
					{image : 'slides/3.jpg', title : 'Seminole Casinos : Twisters Bar'},
					<!--{image : 'slides/19.jpg', title : 'Turtle Creek Casino : Website'},-->
					{image : 'slides/20.jpg', title : 'Slice of Italy : Identity'},
					{image : 'slides/13.jpg', title : 'Jason Hardwick : Identity'},
				]
			};
	        $('#supersized').supersized(); 
	    });
	</script>

My problem is on line 33 how can i fix this?

{image : ‘slides/2.jpg’, title : ‘Seminole & Hardrock Casinos : Million Dollar Bingo 30 second spot - Winner of Silver Telly 2010 <a href="#" onclick=“changeActiveStates(this);showhide(‘apVideo’, ‘table’);showhide(‘apContact’, ‘none’);return false”>Watch The Spot</a>’},