/*
Designed by VReplay (2011)
http://vreplay.com/
*/

function mdd1() {

	$('.topLogin').hide();
	$('#topLogin-go').click(function() {
		$('.topAccess').hide();
		$('.topLogin').slideToggle('slow');
		return false;
	});
	$('.target_blank, .target_blank a').attr('target', '_blank');
	
	$('.topAccess').hide();
	$('#topAccess-go').click(function() {
		$('.topLogin').hide();
		$('.topAccess').slideToggle('slow');
		return false;
	});
	$('.target_blank, .target_blank a').attr('target', '_blank');	

}

$(document).ready(mdd1);
