$(document).ready(function(){
	//make the mouse over event
	$('.group_images').bind('mouseover', function(){
		//loop through the images
		$(this).each(function(){
			//get the large src
			var src = $(this).attr('large');
			
			//set the large source and show the image
			$("#group_pop img").attr('src',src);
			$("#group_pop").show();
		});
	});
	
	//make the mousemove event
	$('.group_images').bind('mousemove', function(e){
		//set the offset and the top and left
		var left_offset = 230;
		var top_offset = 370;
		var left = e.pageX - left_offset;
		var top = e.pageY - top_offset;
		
		//set the css for the group pop up
		$("#group_pop").css({ 
			'position':'absolute', 
			'left':left , 
			'top':top, 
			'background':'#FFF', 
			'padding':'10px', 
			'border':'thin solid #000' 
		});	
	});
	
	//make the mouse out event
	$('.group_images').bind('mouseout', function(){
		//hide the group pop up
		$("#group_pop").hide();
	});
});
