
$(document).ready(function() {  
	
	$('a.open_dialog').click(function() {	
		
		$('#disable_screen, .dialog_wrapper').show();
		$('#'+$(this).attr('name')).show();
		$('.dialog_wrapper').css('top', ($(window).scrollTop()-150)+'px');
		return false;
	});
	
	$('a.close_dialog, a.close_dialog_link').click(function() {
		$(this).parent().hide();
		$('#disable_screen, .dialog_wrapper').hide();
		return false;
		
	});
	
	$('#contact_form').submit(function() {
		$(this).attr('action', '').
		children('input[name="hidden_field"]').val('');
		return true;
	});
	
	$("a.screenshot").fancybox();

	
});

