
// Gallery fade-in fade-out
jQuery(function($) {
		$('#slideshow-image').Slides({
			images : [
			'imgs/hp_pics/home02.jpg',
			'imgs/hp_pics/home03.jpg',
			'imgs/hp_pics/home04.jpg',
			'imgs/hp_pics/home05.jpg',
			'imgs/hp_pics/home01.jpg'
			],
			wait : 0,
			pause : 5000,
			fade : 2000
		});
	});
	
// Onload Fade-in
$(document).ready(function () {
        $('#msg').hide().fadeIn(5000);
    });
