// we will add our javascript code here  
$(document).ready(function(){

  $(".footerColumnTwo > p").getTwitter({
    userName: "hintonmedia",
    numTweets: 1,
    loaderText: "",
    slideIn: true,
    slideDuration: 750,
    showHeading: false,
    showProfileLink: false,
    showTimestamp: true
  });
	
	$(".tilegrid li p").hide();
	$(".tilegrid li").hover(
		function(){
		  $(this).find('p').slideDown(400);
		},
		function() {
			$(this).find('p').slideUp(400);
		}
	);
	
	if ($(".lightbox").length) {
		$(".lightbox").fancybox({
		'titlePosition'  : 'inside'	
		});
	}
	
	//Homepage slider
	$('#slider').nivoSlider({
      effect:'sliceDown',
	  pauseTime: 6000,
	    directionNav:false //Next & Prev 
	});
});  
