
/* ----------------------------------------------------------------------------------------- 
____________________________________________________________________

// 

Author : Kazim Khan Mangi

 */

// when the DOM is ready...(initialization)

// ------  HOVER EFFECT OF SOCIAL NETWORKS ---------- \\

jQuery(function(){
	//Network Section - Social Icons hover animation
	jQuery('#networks a').hover(function () {
		jQuery('img', this).stop().animate({
		'marginLeft' : 4
		}, 250);
	}, function () {
		jQuery('img', this).stop().animate({
		'marginLeft' : 10
		}, 250);
	}).find('img').css('marginLeft', 10);
	
});

