jQuery.noConflict();
jQuery(document).ready(function($){

	// SPACING OF THUMBNAILS
	totalwidth = ($(".youtube_gallery").width());
	numberdivs = totalwidth/135;
	numberdivs = (numberdivs < 0 ? -1 : 1) * Math.floor(Math.abs(numberdivs))
	spacing = totalwidth - (135*numberdivs);
	$(".youtube_gallery").css({ 'margin-left' : (spacing/2), 'margin-right' : (spacing/2) });

	// OPEN YOUTUBE-WINDOW
	$('.youtubewindow').click(function( event ){
	event.preventDefault();
	winID = $(this).attr('href');
	console.log(winID);
	});

});
