$(document).ready(function() {
	if(screen.width < 1024)
		$('body').addClass('screen_width_lt_1024');
													 
	$("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});
	
	$('._blank').each(function() { this.target = '_blank'; });
	
	$("#nav ul ul").css({display: "none"}); // Opera Fix
	$("#nav ul li").addClass('js');

	$("#nav ul li").hover(function(){
		$(this).find('> ul:first').fadeIn(150);
	},function(){
		$(this).find('> ul:first').fadeOut(150);
	});

	$("#nav li").hover(function(){
		$(this).find('> a:first').addClass('selected');
	},function(){
		$(this).find('> a').removeClass('selected');
	});

	$('#mainarea #courses.box_foot a:last').addClass('no_border');

	$('.search_courses_box_foot .wht,.skills_development_box_foot .wht,.latest_news_box_foot .wht').match_heights();
	
	common_init();
	
	

});
