$(document).ready( function()
	{
		$('.image').find('.popUpInner').css({'top': '-80px', 'left': '142px'});
		$('.image1').find('.popUpInner').css({'top': '-80px', 'left': '-382px'});	
		
		
		
	$('.enlarge').hover( function()
			{
				$(this).css('position','relative');	
				$(this).find('.popUpInner').fadeIn('slow');	
				
				
			}, function()
			
			{
					
				$(this).find('.popUpInner').css('display', 'none');	
				$(this).css('position','static');	
				
				
				
			});
	
	$('.splashScreen').hover( function()
			{
				$(this).css('position','relative');	
				$(this).find('.splashPopUpInner').fadeIn('slow');	
			}, function()
			
			{
				$(this).find('.splashPopUpInner').css('display', 'none');	
				$(this).css('position','static');	
			});
	
	$('a.slide').click(function()
			{
				
				 $('ul.secondLevel').slideUp('slow');
				 $(this).next('ul.secondLevel').slideToggle('slow');
			});
	
	$('.regInput').focus( function()
								  
			{
				$(this).css('background','#F3FAF9');
			});
	$('.regInput').blur( function()
								  
			{
				$(this).css('background','#ffffff');
			});
	$('.textaria').focus( function()
								  
			{
				$(this).css('background','#F3FAF9');
			});
	$('.textaria').blur( function()
								  
			{
				$(this).css('background','#ffffff');
			});
	
	})



