/* Scroll */
$(document).ready(function(){
   $('#backTop a').click(function() {
   if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
   && location.hostname == this.hostname) {
   var $target = $(this.hash);
   $target = $target.length && $target
   || $('[name=' + this.hash.slice(1) +']');
   if ($target.length) {
   var targetOffset = $target.offset().top;
   $('html,body')
   .animate({scrollTop: targetOffset}, 600);
   return false;
   }
  }
 });
});

/* Home Page Portfolio */
$(window).load(function() {
	$('#homePortfolioSlider').nivoSlider({
		effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
		slices:15,
		animSpeed:1000, //Slide transition speed
		pauseTime:4000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:false, //Next & Prev
		directionNavHide:false, //Only show on hover
		controlNav:false, //1,2,3...
		pauseOnHover:true //Stop animation while hovering
	});
});

/* Portfolio Page */
$(function() {
			$('ul.portfolioItems li').hover(function(){
				$(this).find('img').animate({top:'145px'},{queue:false,duration:700});
			}, function(){
				$(this).find('img').animate({top:'0px'},{queue:false,duration:700});
			});
		});
