/*
 * Public profile, theme (4) by Rogie King.
 * http://zerply.com/
 * Copyright (c) 2010 Zerply Inc.
 */

$(document).ready(function() {
	
	$('.contacts').hover(function(){
		$(this).children('.icon').addClass('on');
	},function(){
		$(this).children('.icon').removeClass('on');	
	});
	
	$('a.show-more').click(function(){
		if(!$(this).hasClass('on')){
			$(this).addClass('on');
			$(this).parent().siblings(".hide-content").animate({ "height": "toggle", "opacity": "toggle" }, 500);
		} else {
			$(this).removeClass('on');
			$(this).parent().siblings(".hide-content").animate({ "height": "toggle", "opacity": "toggle" }, 500);
		}
		return false;
	});
			
});
