$(document).ready(function(){
	$('div.G2').galleryScroll({
		step:1,
		duration:300,
		funcOnclick:function(){
			$('p.margin').html($('ul',this).css('marginLeft'));
		}
	});
	if(typeof($.cookie) == 'function') {
		if($.cookie('test') == null){
			$('#video-holder').show();
			$.cookie('test','true');
		}
		else {
			$('#video-holder').hide();
		}
	}
});