$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "normal");
},
function() {
$(this).stop().animate({"opacity": "1"}, "normal");
});
 
});

$(document).ready(function() { 
 		$("a#single_image").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	100, 
		'speedOut'		:	100, 
		'autoScale'     :   false,
		'cyclic'		:	true,
		'overlayShow'	:	true,
		'overlayColor'	:	'#999',
		'overlayOpacity':   0.9,
		'padding'		:   3,
		'titlePosition' : 	'inside',
		'showCloseButton' : true,
		'showNavArrows' : false,
		'hideOnContentClick' : true,
		'centerOnScroll' : false
	});
		$("a#grouped_elements").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	100, 
		'speedOut'		:	100, 
		'autoScale'     :   false,
		'cyclic'		:	true,
		'overlayShow'	:	true,
		'overlayColor'	:	'#999',
		'overlayOpacity':   0.9,
		'padding'		:   3,
		'titlePosition' : 	'inside',
		'showCloseButton' : true,
		'showNavArrows' : true,
		'hideOnContentClick' : true,
		'centerOnScroll' : false
		}); 
		
		
		$('#aboutme').show();

		jQuery('#show').click(function(){
  			jQuery('#aboutme').slideDown('slow');

	});
		jQuery('#hide').click(function(){
  			jQuery('#aboutme').slideUp('slow');

	})
(function($) {
  var cache = [];
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)
	
});
