$(document).ready(function(){
	
	var 	social  	= $('.socialBookmarks'),
			button 	= social.find('.button'),
			bubble 	= social.find('.bubble'),
			icons 	= bubble.find('a');
	
	bubble.hide();
	
	if($.browser.version == '6.0'){
	
		bubble.find('.tip').css('bottom', -7);
		
	};
	
	social.removeClass('noJS').css('overflow', 'visible').unbind().bind('mouseenter', function(){
		
		bubble.fadeIn(300);
		
	}).bind('mouseleave', function(){
		
		bubble.fadeOut(200);
		
	});
	
	icons.unbind().bind('mouseenter', function(){
		
		$(this).find('img').stop().animate({'width': 32, 'height': 32, 'marginTop': 0, 'marginLeft': 0}, 150);
		
	}).bind('mouseleave', function(){
		
		$(this).find('img').stop().animate({'width': 16, 'height': 16, 'marginTop': 8, 'marginLeft': 8}, 100);
		
	}).bind('click', function(){
		
		window.open($(this).attr('href'));
		
		return false;
		
	});
	
});