Trying to Use Cycle 2

Trying to Use Cycle 2

Hi,

I am trying to run the Cycle2 jquery plug in.I am using wordpress. Here is my code:

<script type="text/javascript" src="http://traviedigital.com/wp-includes/js/jquery/jquery-1.11.1.min.js">/script>
<script type="text/javascript" src="http://traviedigital.com/wp-includes/js/jquery/jquery.cycle2.min.js">/scipt>
<script type="text/javascript">
$(document).ready(function(){
$('#myslides').cycle()
});
</script>

this is placed in my header inside the <head> tags and before the php call for the head

My html looks like such:

<div id="myslides">
<img src="http://traviedigital.com/wp-content/uploads/2014/04/blue-ray-granite_web-e1402439273995.gif"/>
<img src="http://traviedigital.com/wp-content/uploads/2014/04/covertitle-e1402439304166.gif"/>
<img src="http://traviedigital.com/wp-content/uploads/2014/06/ResizedImage_1391122997376-e1402440232645.jpg"/>
</div>

And my css:

div#myslides {
width: 370px;
height: 220px;
padding: 0;
margin: 0 auto;
}

div#myslides img {
padding: 10px;
border: 1px solid rgb(100,100,100);
background-color: rgb(230,230,230);
width: 350px;
height: 220px;
top: 0;
left: 0;
}

the site is www.traviedigital.com

the links i am referencing in my call to the script file in the header will open in my broswer.

any ideas