$(document).ready(function () {
$('.thumb').hide();
if ($('.selected').length) {$('.selected').show()}
  else $('.dsignryby').show(); 
$('.signs').hover(function () {
    $('.thumb').hide();
    $('.d'+$(this).attr('id')).show();
    $('#pointer').css('margin-left',20+75*$(this).index());
    return false;
    });

$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'titlePosition' 		: 'inside'
	});
});

