
$(document).ready(function(){
	$('#home_images .cycler').cycle({
		fx : 'fade',
		timeout : 5000,
		pause : 1
	});
	$('#home_banners .cycler').cycle({
		fx : 'fade',
		pager : '#home_banners .cycle_pager',
		next : '#home_banners .cycle_next',
		prev : '#home_banners .cycle_previous',
		timeout : 5000,
		pause : 1
	});
	
	
	$('#main_nav > li').children('ul.drop-down').css({ opacity: 0, display: 'none' })
	$('#main_nav > li').hover(
		function(){ 
			$(this).children('ul.drop-down').css({ display: 'block' }); 
			$(this).children('ul.drop-down').animate({ opacity: 1 }, 'fast'); 
		},
		function(){ 
			$(this).children('ul.drop-down').animate({ opacity: 0 }, 'fast', null, function(){ $(this).css({ display: 'none' }); }); 
		}
	); 		
});

function openOnlineBanking(){
	window.open ("http://www.javascript-coder.com", "mywindow","status=1,scrollbars=1, width=800,height=539");
}
