jQuery(document).ready(function(){
jQuery("ul.gallery li a").click(
		  function (event) {
			event.preventDefault();			
			var ident=$(this).attr('id').substr(3,6);
			startNum=ident;
			jQuery(".lifestyleDivImg").fadeOut("slow");	
			jQuery(".lifestyleDiv"+ident).fadeIn("slow").animate({opacity: "1"}, 1000).fadeOut("slow");
		  }
		);

$('#lifestyleDiv').crossSlide({
	fade: 4,
	shuffle: true
}, [
      {
        src:  'images/lifestyle/001.jpg',
        from: 'top right',
        to:   'bottom right',
        time: 6
      }, {
        src:  'images/lifestyle/002.jpg',
        from: 'top right',
        to:   'bottom right',
        time: 6
      }, {
        src:  'images/lifestyle/003.jpg',
        from: 'top right',
        to:   'bottom right',
        time: 6
      }, {
        src:  'images/lifestyle/004.jpg',
        from: 'top right',
        to:   'bottom right',
        time: 6
      }
    ]);


});
