
jQuery(document).ready(function($) {

	$(".instagram-data").hide();
	
	$(".instagram-item").live("mouseover mouseout", function(e) {
		
		//console.log(e.type);
		
		if(e.type == "mouseover") {
			$(this).find(".instagram-data").show();
		}
		if(e.type == "mouseout") {
			$(this).find(".instagram-data").hide();
		}
		
	});
	
});
