
$(document).ready(function() {
	$('#PortalHead').hide();

	$("#AppPortal").mouseover(function() {
		$(this).css({'height' : '270'});
		$('#PortalHead').show();
		$('#PortalLinks').hide();
	});
    
	$("#AppPortal").mouseout(function(){
		$(this).css({'height' : '55'});
		$('#PortalHead').hide();
		$('#PortalLinks').show();
	});
	$(".ico").mouseover(function() {
		$(this).css({'border-color' : '#005A88'})
	});
	$(".ico").mouseout(function() {
		$(this).css({'border-color' : '#fff'})
	});
	$(".Openform").fancybox({
		'width'				: 665,
		'height'			: '200%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'scrolling'			: 'no'
	});
	
});

