// initialise Goto Top Button
$(document).ready(function() {			
			
			$().UItoTop({ easingType: 'easeOutQuart' });
			
});

// Initialise Models Thumb Effect
		$(document).ready(function(){
	$(".thumb-main img, #homefeatured img").fadeTo("normal", 1.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$(".thumb-main img, #homefeatured img").hover(function(){
		$(this).fadeTo("normal", 0.8); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("normal", 1.0); // This should set the opacity back to 60% on mouseout
	});
});

// Initialise Mouse Scroll On Models Page
$(function() {
   $("#makescroll").mousewheel(function(event, delta) {
      this.scrollLeft -= (delta * 30);
      event.preventDefault();
   });

});



