$(function() {
	$('.fancy_img').fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'overlayColor'	:	'#000',
		'overlayOpacity':	0.4,
		'overlayShow'	:	true
	});
	$('#search_input').keyup(function(event){
	    if (event.keyCode == 13) {
	    	var search = $('#search_input').val();
	        window.location = "/?search="+escape(search);
	    }
	});
	$('#search_input').click(function() {
		$(this).val('');
	});
	$('#search_input').focus(function() {
		$(this).val('');
	});
	$('#search_now').click(function(){	   
    	var search = $('#search_input').val();
        window.location = "/?search="+escape(search);
	});
	
	$('#add_to_maillist').live('submit', function(event) {
		$.ajax({
			url:		"/ajax.php",
			type: 		"GET",
			contentType: "application/json",
			dataType:	"json",
			data:		"maillist_name="+$('#name').val()+"&maillist_email="+$('#email').val(),
			success:	function(data) {
				if (data.sent == true) {
					$('.mail_error').text(data.error);
					$('#name').val('');
					$('#email').val('');
				}
				if (data.error != "" && data.sent == false) {
					$(".mail_error").html(data.error);
				}
			}
		})
		event.preventDefault();
	});
});
