$(document).ready(function(){
	$("#socialmedia").slideBox({width: "100%", height: "100px", position: "bottom"});
	
	$(".hoverImg").hover(function() {
		$(this).attr("src", $(this).attr("src").split("1.").join("2."));
	}, function() {
		$(this).attr("src", $(this).attr("src").split("2.").join("1."));
	});

	$("body").append('<div id="preload" style="display: none;"></div>');
	$(".hoverImg").each(function(intIndex) {
		$("#preload").append('<img src="'+$(this).attr("src").split("1.").join("2.")+'" style="display: none;" />');
	});
        
	$("div.slider-wrap").prepend("<p class='loading'>Loading...<br /><img src='/assets/images/ajax-loader.gif' alt='loading...'/ ></p>");
	
	var w = $(window).width()/2;
        var dig = w-720;
        $(".our_diggs").css({'left':dig});
	
	$(window).resize(function(){
                var w = $(window).width()/2;
                var dig = w-720;              
                $(".our_diggs").css({'left':dig});
	});
	
	
	
	// Portfolio Hover 
	$("#portfolio-list li a").hover(function(){
		$(this).find("img").fadeTo("fast", 0.5);
		$(this).append('<span class="viewitem">View Project</span>');
	},
	function(){
		$(this).find("img").fadeTo("fast", 1);
		$(this).find('.viewitem').remove();
	});
	
	

});

