Okay so, I'm not a complete noob but still a beginner at jQuery/javascript and I'm just not getting why this jqueryman.js isn't linking to my html. I am pretty sure i have got the folders tree right, i even placed my js file in the same folder as my html just to make sure it wasn't a mistake there.
head of the index.html
<!-- metas -->
<meta charset='UTF-8'>
<!-- stylesheets -->
<link rel='stylesheet' href='../css/mainpage.css'>
<link rel='stylesheet' href='../css/index.css'>
<!-- all the scripts loosly taken online -->
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'></script>
<script src='http://malsup.github.com/jquery.cycle2.js'></script>
<script src='http://code.jquery.com/jquery-1.10.2.min.js'></script>
<!-- script files -->
<script src="jqueryman.js"></script> <!-- (this is the trouble maker) -->
body of the index.html
<h1 class="h1">neckbeards</h1>
<div class='cycle-slideshow'
data-cycle-fx='scrollHorz'
data-cycle-pause-on-hover='false'
data-cycle-speed='5000'>
<img class='sliderimg' id="Carl" alt='Carl' src='http://i.imgur.com/7kJOy7k.jpg'>
<img class='sliderimg' id="Tugboat" alt='Tugboat' src='http://i.imgur.com/mRGbOKv.jpg'>
<img class='sliderimg' id="P0J0" alt='P0J0' src='http://i.imgur.com/UiAIWGf.png'>
<img class='sliderimg' id="Ffej" alt='Ffej' src='http://i.imgur.com/isl6UhR.png'>
</div>
<h1 id="name">Carl</h1>
jqueryman.js
$(document).ready(
function () {
$('.h1').hide()
});
);