$().ready(function(){
	$("h1").tipbox("This is a <h1> element", 0);
	$("div.default").tipbox("Only content is specified. So <strong>doesn't allow HTML</strong> and custom style.");
	$("div.strong").tipbox("Content and htmlAllow are specified. So <strong>we got HTML content</strong> but not custom style.", 1);
	$("div.all").tipbox("Content allow HTML and custom CSS class!", 1, "blue");
	$("div.width").tipbox("As you can see, we can fix our custom width too by setting the class!", 0, "width");
	$("div.big").tipbox("Yeah, really", 0, "big");
	$("div.project").tipbox("<img src='http://yensdesign.com/wp-content/themes/stiled/images/plusmusicaBanner.jpg' alt='Plusmusica.com' /> <br /> <center><strong>Plusmusica.com</strong></center>", 1, "width");
	$("div.cokidoo").tipbox("<img src='top1.jpg' alt='Cokidoo' /> <br /> <center><strong>Cokidoo.com</strong> - Creating Communities</center>", 1, "width");
});
