/* Javascript (c) Brice Burgess <bhb@iceburg.net> 2007 - All rights reserved. */

$().ready(function() {

	$('#top img, #head img').hover(
		function(){ IBJS.imgSwap(this,'over','2'); },
		function(){ IBJS.imgSwap(this,'out','2'); }
	);
	
	
});

var ajaxShow = function(hash) {

		$.getJSON(hash.t.href, function(json){
  			console.log(json);
		});

		hash.w.show();
		
	}
	
	var ajaxHide = function(hash) {
		
		hash.w.hide();
	}