$(document).ready(
	function(){
		$('#bannerImages ul').innerfade({
			speed: 1000,
			timeout: 3000,
			type: 'random',
			containerheight: '225px'
		}); 
});

$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".msg_body").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
    $(this).next(".msg_body").slideToggle(600);
  });
});

$(document).ready(function() {
	$("a.fancyBox").fancybox({
	
	'titlePosition' 	: 'inside'
});
});



