/* Document Ready
-------------------------------------------------------------- */

$(document).ready(function() {
	preloadImages();
	initDropDown();
	initGrid('#floating-grid', '.floating-element', '#sidebar', singleWidth, gutterWidth);
	// init gallery (just if not mobile and if there are gallery images)
	if((is_mobile()==false)&&($("a[rel^='lightbox']").length!=0)){
		initGallery();
	}
	
});

/* Document Resize + Scroll
-------------------------------------------------------------- */
$(window).resize(function(){ 
	// resize gallery
    resizeGallery(); 
});

$(window).scroll(function(){
	// resize gallery
    resizeGallery();
});


/* uit init.recent.js */
/*
	preloadImages();
	initDropDown();
	initGrid('#floating-grid', '.floating-element', '#sidebar', singleWidth, gutterWidth);
*/
