/* Author:

*/
$(function() {

	//ColorBox
	$('a[rel=zoom]').live('click', function() {
	  ts = (Math.floor((new Date()).getTime() / 1000));
	  url = this.href+"?time="+ts;
	  $.fn.colorbox({maxWidth:"80%", maxHeight:"80%", opacity:0.75, href: url});
	  return false;
	});
});
 


$(document).scroll(function() {
          
			if($(document).scrollTop() >= 350)
			{
				$("nav").addClass("menuFixe")
			}
			else{
				$("nav").removeClass("menuFixe");}
});

