(function($) {
	$(function() {
		
		$('a.popUpWindow').live('click', function() {
			
			window.open(this.href, '', 'width=600, height=400');
			return false;
		});
		
		$('.blog-post .share-blog').click(function() {
			$(this).toggleClass('visible');
			return true;
		});
		
		$('.ie .blog-post .share-blog').each(function(){
			var iframe = $(this).find('iframe');
			iframe.css('width', parseInt(iframe.css('width'), 10) - 2);
		}).hover(function() {
			$(this).addClass('visible');
		}, function() {
			$(this).removeClass('visible');
		});
		
		
	});
})(jQuery);
