$(document).ready(function(){  
	
	$('#datepicker')
			.datePicker({inline:true,startDate:'01.09.2005'})
			.bind(
				'dateSelected',
				function(e, selectedDate, $td)
				{
					console.log('You selected ' + selectedDate);
				}
			);
			$('.photowidth a[rel="gallery"]').colorbox({opacity:0.6});
			
			$('#logo').flash({swf:'/bitrix/templates/main/images/logo.swf', width:102, height: 90});

})
