$(document).bind('mt4pips-contentLoaded', function(){
	$('a.fancyzoom').fancyZoom({directory: '/images'});
	
	var img = new Image();
	img.src = '/images/img01.png';
	
	$('.header-line-holder .banner-pict img').hover(function(){
		$(this).attr('src','/images/img01.png');
	}, function(){
		$(this).attr('src','/images/img012.png');
	});
	
	$('.btn-sign-up a').click(function(){ mt4pips.userauth.register.show(); return false; });
});
