//page fade
$(document).ready(function() {
	$("body").css("display", "none");
    $("body").fadeIn(500);
	$("a.transition").click(function(event){ event.preventDefault(); linkLocation = this.href; $("body").fadeOut(300, redirectPage); }); function redirectPage() { window.location = linkLocation; }
//image fade
	$(".box img").mouseover( function() { $(this).stop().animate({"opacity": "0.7"}, "500"); });
	$(".box img").mouseout( function() { $(this).stop().animate({"opacity": "1"}, "slow"); }); 
});
//box sorting
$(function(){ var speed = 1000, $wall = $('#content').find('.wrap') ; 
$wall.masonry({ columnWidth: 100, itemSelector: '.box:not(.invis)', animate: true, animationOptions: { duration: 1000, queue: false } }); 
$('#filtering-nav a').click(function(){ var colorClass = '.' + $(this).attr('class'); if(colorClass=='.all') { $wall.children('.invis') .toggleClass('invis').fadeIn(speed); } else { $wall.children().not(colorClass).not('.invis') .toggleClass('invis').fadeOut(speed); $wall.children(colorClass+'.invis') .toggleClass('invis').fadeIn(speed); } $wall.masonry(); return false; }); });

//copyrights
window.onload = function(){
  var footerText='&copy; 2007&ndash;'
  document.getElementById('ins_cpr').innerHTML=footerText+(new Date().getYear() + 1900)+' DigSYS production';
};
