$(document).ready(function(){

	//fancybox
	$("a.fancy").fancybox({
		'hideOnContentClick':true, //прячем картинку по тыку
		'zoomSpeedIn':0, 	// показываем без анимации
		'zoomSpeedOut':0, // прячем без анимации
		'overlayShow':true	//серенький фон :)
	});
	
	//Классы для инпутов
	$('input').each(function(){
		$(this).addClass($(this).attr('type'));
	});
	
	//Список страниц
	$('#close-menu').click(function(){
		$(this).siblings('ul').slideToggle();
		return false;
	});
	
	//Пустые ссылки
	$('a[href=#]').click(function(){
		return false;
	});
	
	//Отсутствующая картинка
    $('img').error(function() {
        $(this).attr({src: 'images/missing.gif'});
    });
	
	//Долбанная менюшка
	$('#shadow-bottom').width($('#top-menu').width() + 40);
	
});
