jQuery.noConflict();


jQuery(document).ready(function(){



/* open popup */
jQuery(".project").click(function() {
	jQuery(this).next().fadeIn();
});
/* close popup */
jQuery(".popup .close").click(function() {
	jQuery(this).parent().fadeOut();
});
jQuery(".popup h4").click(function() {
	jQuery(this).parent().fadeOut();
});


/* z-index for projects */
var arrProj = jQuery(".projectsList > ul > li"),
	colProj = arrProj.length-1,
	i;

	for(i=0;i<=colProj;i++)
	{
		arrProj.eq(i).css("z-index",colProj-i);
	}



});




