$(document).ready(function() { 


/////// popup

  $('.thumbContainer a.popIt').live('mouseover',function(){
  	$('.popContainer').hide();
  	$(this).next('.popContainer').show();
  });
  
$('.popContainer').live('mouseover',function(){
  	$(this).show();
  });
 
 $('.thumbContainer a.popIt').live('mouseout',function(){
  	$('.popContainer').hide();
  });
 
 $('.popContainer').live('mouseout',function(){
  	$(this).hide();
  });
  
 $('.close').live('click',function()
 {
 	$(this).parent().parent().hide();
 	return false;
 });
 


/////// accodion


	$('dd.aFaq').hide();
	$('dd.aFaq:first').show();
	$('dt.qFaq:first').addClass('selected');
	$('dt.qFaq').click(function() {
		//$(this).parent().siblings().hide();
		$('dt.qFaq').removeClass('selected');
		$('dd.aFaq').hide();
		$(this).addClass('selected').next('dd.aFaq').show();
		
	});



});
