// JavaScript Document
$(document).ready(function(){
//doc ready start
//create function select imgs
$(function(){
	//get images and hide them
	$('#mCont img:gt(0)').hide();
	//set intervale and fade image in and out and put faded image at end
	setInterval(function(){$('#mCont :first-child').fadeOut(1000).next('img').fadeIn(1000).end().appendTo('#mCont');}, 5000);
	
});


$(".hometext").css('display','none');
$("#smallB").css('cursor','pointer');
$("#smallB").click(function () {
      $(".hometext").slideToggle("slow");
    });
$("#closeBox").click(function(){
	 $(".hometext").slideUp('slow');						  
});

//doc ready end
});
