$(document).ready(function(){
  
    $("#tabs").tabs();
	  collapsed: true

		$("#tree").treeview({
			collapsed: true
		});
		$("#tree2").treeview({
			collapsed: true
		});
		$("#tree3").treeview({
			collapsed: true
		});
       	   
		   
		// Add onclick handler to checkbox
	   $("#hide-images").click(function(){
	   
		// If checked
		if ($("#hide-images").is(":checked"))
		{
			//show images
		  $('#products').html('<p><img src="http://www.kellyflowers.co.uk/images/ajax-loader.gif" width="220" height="19" /></p>');
		  $('#products').load("category.cfm");
	
		}
		else
		{     
			//hide images
		  $('#products').html('<p><img src="http://www.kellyflowers.co.uk/images/ajax-loader.gif" width="220" height="19" /></p>');
		  $('#products').load("header.cfm");
		}
	  });
	   
	   
	   


});



