$().ready(function(){var fader_options={timer:10000,speed:2000,photos:[$('#photo_0').attr('src'),'images/home/hm_men.jpg','images/home/hm_jain.jpg','images/home/hm_khyber_pass.jpg','images/home/hm_sikh.jpg','images/home/hm_jama_masjid.jpg','images/home/hm_school_children.jpg','images/home/hm_carrying_garlands.jpg','images/home/hm_tamil.jpg','images/home/hm_boats.jpg']};fader(fader_options);$('#about').css({top:320,left:15,opacity:0.75}).addClass('draggable');$('#media').css({top:465,left:385,opacity:0.75}).addClass('draggable');$('#player').css({top:15,left:525,position:'absolute'});$('#timeline').css({top:350,left:540,opacity:0.75}).addClass('draggable');$('#gallery').css({top:410,left:675,opacity:0.75}).addClass('draggable');$('#about,#media,#timeline,#gallery').each(make_draggable).mouseover(restack)});function make_draggable(){$(this).jqDrag();$(this).find('a').click(function(){if($(this).attr('target')){winRef=window.open($(this).attr('href'));return false}else{return location.href=$(this).attr('href')}})}function restack(){var maxZ=1;$('#content div.draggable').css({opacity:0.75}).each(function(){maxZ=Math.max(maxZ,$(this).css('z-index'))});$(this).css('z-index',maxZ+1).css({opacity:1})}function fader(opts){var idx=0;var $current,$next;photo_switch=function(){$current=$('#photo_'+idx);$current.css({'z-index':2});idx++;if(idx>=opts.photos.length)idx=0;$next=$('#photo_'+idx);if($next.length){$next.css({'z-index':1}).show();photo_transition()}else{var imgPreloader=new Image();imgPreloader.onload=function(){imgPreloader.onload=null;$img=$('').addClass('photo').attr({'src':opts.photos[idx],'id':'photo_'+idx}).css({'z-index':1});$('#content').append($img);photo_transition()};imgPreloader.src=opts.photos[idx]}};photo_transition=function(){$current.fadeOut(opts.speed,function(){setTimeout('photo_switch()',opts.timer)})};setTimeout('photo_switch()',opts.timer)}