jQuery.showPic = function(id){
	$("#picContInner").html('<img src="images/gallerypic_big_' + id + '.jpg" />').hide().fadeIn(500);
};
$(document).ready(function(){
	$.preloadImages('images/gallerypic_big_1.jpg','images/gallerypic_big_2.jpg','images/gallerypic_big_3.jpg','images/gallerypic_big_4.jpg','images/gallerypic_big_5.jpg','images/gallerypic_big_6.jpg','images/gallerypic_big_7.jpg','images/gallerypic_big_8.jpg','images/gallerypic_big_9.jpg','images/gallerypic_big_10.jpg','images/gallerypic_big_11.jpg','images/gallerypic_big_12.jpg','images/gallerypic_big_13.jpg','images/gallerypic_big_14.jpg');
	$("#thumbs img").mouseover(function(i){
		$.showPic($(this).attr("id").substr(5));
	});
	$.showPic(7);
});
