$(window).load(function(){
	Gallery();
});

function Gallery(){
	$('.gallery img').click(function(a){
		var url = $(this).attr('data-image');
		$('#mainImg').css('background-image', 'url(' + url + ')');
	});
	
	$('.firstli').mouseout(function(a){
		if($(this).children('ul')){
			$(this).children('ul').hide();
		}
	});
}
