//this is for misc js that wasnt related to the tabs etc or the sliding panels or whatever else.  
/*

jQuery(document).ready(function() {
	jQuery('div.child_content').css('display', 'none');
	//jQuery('div.child_link a.my_child_link').css('backgroundImage', 'url(sm_arrow_down.png)');
	//jQuery('div.child_link a.my_child_link').addClass('link_normal');
	
	jQuery('.child_image').hover(function() {
		jQuery('div.child_content', this).slideDown("slow");
		jQuery('a', this).addClass('link_normal'); 
		}, 	
		
		function() {
    	 jQuery("div.child_content", this).slideUp("show");
		 //jQuery('.child_image .child_link a').addClass('link_normal');
	});
	
});



// setting the tabs in the sidebar hide and show, setting the current tab
	jQuery('div.tabbed div').hide();
	jQuery('div.t1').show();
	jQuery('div.tabbed ul.tabs li.t1 a').addClass('tab-current');
	jQuery('.tabbed div.t2, .tabbed div.t3, .tabbed div.t4').addClass('tabbed_hidden');

// SIDEBAR TABS
jQuery('div.tabbed ul li a').click(function(){
	var thisClass = this.className.slice(0,2);
	jQuery('div.tabbed div').hide();
	jQuery('div.' + thisClass).show();
	jQuery('div.tabbed ul.tabs li a').removeClass('tab-current');
	jQuery(this).addClass('tab-current');
	jQuery(this).removeClass('tabbed_hidden');
	});
*/

/*
jQuery(document).ready(function() {
jQuery('.ngg_alt').hide();
jQuery('.image_wrapper').hover(function(){
	jQuery('.ngg_alt', this).slideDown("slow");
	},
			
			
	function() {
		jQuery('.ngg_alt', this).slideUp("slow");
	});

});
*/
