jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img />").attr("src", arguments[i]);
  }
}

//preload the menu images...
jQuery.preloadImages(
	"http://bsstc.com.au/themes/bsstc/images/nav/about_us_active.gif", 
	"http://bsstc.com.au/themes/bsstc/images/nav/contact_us_active.gif",
	"http://bsstc.com.au/themes/bsstc/images/nav/education_active.gif",
	"http://bsstc.com.au/themes/bsstc/images/nav/hot_bed_ensemble_active.gif",
	"http://bsstc.com.au/themes/bsstc/images/nav/on_the_road_active.gif",
	"http://bsstc.com.au/themes/bsstc/images/nav/shows_09_active.gif",
	"http://bsstc.com.au/themes/bsstc/images/nav/support_us_active.gif",
	"http://bsstc.com.au/themes/bsstc/images/sub_menu_bg.png",
	"http://bsstc.com.au/themes/bsstc/images/sub_menu_top.png"
);
	
		
jQuery(document).ready(function(){		
	jQuery(".post .post-interact a.share-link").toggle(
		function(){
			jQuery(this).addClass("open");
			jQuery(this).parents(".post-interact").animate({
				"top": "0"
			}, 500)				
		},
		function(){
			jQuery(this).removeClass("open").blur();
			jQuery(this).parents(".post-interact").animate({
				"top": "-90px"
			}, 500)
		}
	);
	
	/*var config = {    
		 sensitivity: 3,  
		 interval: 100,   
		 over: show_sub,     
		 timeout: 400,    
		 out: hide_sub    
	};

	jQuery("#menu ul.top_level>li").hoverIntent( config );*/
	
	jQuery(".content div.info:first").attr('id','top_of_list');

														  
	
});
	
