jQuery.noConflict()

jQuery(document).ready(function(){

	jQuery(".secContent").hide();
	
	jQuery(".secToggler img").css("display", "inline");

	jQuery(".secToggler").mouseover(function()
	{
		jQuery(this).css("background-color", "#A7C5C7");
		jQuery(this).css("cursor", "pointer");
	});

	jQuery(".secToggler").mouseout(function()
	{
		jQuery(this).css("background-color", "#ffffff");
		jQuery(this).css("cursor", "default");
	});
	
	jQuery("a.gallery").slimbox();
	
	jQuery(".secToggler").toggle(function()
	{
		jQuery("img", this).attr("src", "./img/uiHide.jpg");
		jQuery(this).next().show("slow");
	}, function()
	{
		jQuery("img", this).attr("src", "./img/uiShow.jpg");
		jQuery(this).next().hide("slow");
	});

});