function doSearch(_objectImage) {
	jQuery(_objectImage).parent().submit();
}

jQuery(document).ready(function() {
	jQuery('a[rel^="milkbox"]').fancybox({
		'transitionIn':'elastic',
		'transitionOut':'elastic',
		'speedIn':350,
		'speedOut':200,
		'cyclic':true,
		'overlayShow':true,
		'titlePosition':'inside'
	});

	jQuery('div.catalog-search input[name="s"]').hover(function() {
		// on hoverIn
		if (jQuery(this).attr('value') == 'Поиск по сайту') {
			jQuery(this).attr('value', '');
		}
	}, function() {
		// on hoverOut
		if (jQuery(this).attr('value') == '') {
			jQuery(this).attr('value', 'Поиск по сайту');
		}
	});
});
