/*
 * Custom JS (Menu Preview Handler)
 * Author: Matthew Machuga
 * Last Edited: July 21, 2009
 * Company: newline Creations
*/

$(document).ready(function(){
	
	$('div#box img').not('#default').hide();
	
	$('a.thickbox').mouseover(function() {
		var picId = $(this).attr('id');
		$('div#box  #_'+picId).show();
	}).mouseout(function(){
		var picId = $(this).attr('id');
		$('div#box  #_'+picId).hide();
	});
	
});

