$(document).ready(function(){

	$("a[rel='colorbox']").colorbox({
        current: "{current} ({total})",
		maxWidth: '90%',
		maxHeight: '90%'
    });

	$('a[href^=#]').each(function(i){
		$(this).attr('href', location.href+$(this).attr('href'));
	});
	
	$('.youtube ul li a').click(function()
	{
		url = $(this).attr('href');
		$('.youtube').find('param[name=movie]').val(url);
		$('.youtube').find('embed').attr('src',url);
	});
	
	if($('#map').length>0)
		initialize();

});
