$(document).ready(function(){
	//homepage social media bubble hovers	
	$("#subpageLeftCol #socialMediaUL li").hover(
		  function () {
			liName = $(this).attr("id"); //get the id of the id to see which one we're on 
			
			if(liName == "delicious"){ 
				$("#bubbleDescription").html("Browse the HR Council's Delicious List of recommended online resources"); 		
			}else if(liName == "newsletter"){ 
				$("#bubbleDescription").html("Subscribe to the HR Council's Perspectives E-newsletter"); 		
			}else if(liName == "twitter"){ 
				$("#bubbleDescription").html("Follow the HR Council on Twitter"); 		
			}else if(liName == "youtube"){ 
				$("#bubbleDescription").html("Subscribe to the HR Council Channel on YouTube"); 		
			}else{
				$("#bubbleDescription").html("Connect with the HR Council on Linked In"); 		
			}
		  }, 
		  function () {
			$("#bubbleDescription").html(''); //re-empty the description
		  }
	);
	
		
	//THE SEARCH FROM ANYWHERE POPUP 
	$("a.search_fancybox").fancybox({
		'hideOnContentClick' : false,
		'frameWidth'	: 500,
		'frameHeight' 	: 400,
		'type' 			: 'iframe'
	});
});
