$(function() {
	$('.gallery a').lightBox();
	$('#makeover_model a').lightBox();
	
	
	$('.gallery a').each(function() {
		var img = new Image();
		img.src = $(this).attr('href');
	});
	
	$('.gallery a').mouseover(function() {
		$('#main').attr('src', $(this).attr('href'));
		return false;				   
	});
});