﻿
$(document).ready(function() {	
	$('.index, .form-normal .div-other-language, .radio-section, .div-other-occupation, .qulification2, .qulification3, .employer2, .employer3').hide();
	$('.language .radio-section').show();
	$('.carousel').cycle({
        fx: 'fade'        
    });
		
	var indexTop=($(window).height()-$('.index').height())/2.5;
	var indexLeft=($(window).width()-$('.index').width())/2;

	$('.index').css({'left':indexLeft,'top':indexTop});
	$('.index').show();	

		   
	$('h3.question').click(function(){
			$(this).next('div.answer').slideToggle();
		});		
	$('.btn-showMap').click(function() {
			$('.googleMapHolder').slideDown();					 
		});
	
	
});

