$(document).ready(function() {

	
	/**************************************************
		Conferences
	**************************************************/
	
	$('.conference_item').hover(function(){
		$(this).find('.conference_hover').show();
		
		$(this).find('.conference_options_wrapper').animate({opacity: '1'}, {queue:false, duration: 500});
		$(this).find('.conference_options_wrapper').animate({bottom: '5px'}, {queue:false, duration: 300});
		//$('#langwrapper, #logowrapper, #divider, #register, #menu, #session_menu, #right_wrapper,#footer, .conference_item').not(this).animate({opacity: '0.2'}, {queue:false, duration: 300});
	},
	function(){
		$(this).find('.conference_hover').hide();
	
		$(this).find('.conference_options_wrapper').animate({opacity: '0'}, {queue:false, duration: 500});
		$(this).find('.conference_options_wrapper').animate({bottom: '0px'}, {queue:false, duration: 300});
		//$('#langwrapper, #logowrapper, #divider, #register, #menu, #session_menu, #right_wrapper,#footer, .conference_item').not(this).animate({opacity: '1'}, {queue:false, duration: 300});
	});
	//$(".radio").dgStyle();
	//$(".checkbox").dgStyle();
	
});


