function increaseDiv() {
     jQuery("#strip-top").animate( { height:"610px" }, { duration:'slow' })
};

function decreaseDiv() {
     jQuery("#strip-top").animate( { height:"270px" }, { duration:'slow'})
};

function hideControl() {
    jQuery('#caption #meta .name').hide();
	jQuery('#caption .exif').hide();
};

function showControl() {
    jQuery('#caption #meta .name').show();
	jQuery('#caption .exif').show();

};

function hideNav() {
	jQuery('#control .previous').hide();
	jQuery('#control .next').hide();
	jQuery('#control .thumbnail').hide();
}

function showNav() {
	jQuery('#control .previous').show();
	jQuery('#control .next').show();
	jQuery('#control .thumbnail').show();
}

function showThumbBtn() {
jQuery('#control .thumbnail').show();
}

function hideNext() {
jQuery('#control .next').hide();
}

function showNext() {
jQuery('#control .next').show();
}

function hidePrev() {
jQuery('#control .previous').hide();
}

function showPrev() {
jQuery('#control .previous').show();
}

function hideTitle() {
	jQuery('#caption .title').hide();
};

function showTitle() {
	jQuery('#caption .title').show();
};

function getMovie(thisMovie) {
     return document.getElementById(thisMovie);
}

function somefunc() {
     //var flash = getMovie('myFlashPlayer');
     //flash.methodName();
	
}

function imageIden(albumTitle,titleData, captionData) {
jQuery('#caption #meta .title').html(albumTitle);
	jQuery('#caption #meta .name').html(titleData);
	jQuery('#caption .exif').html(captionData);
}


function prevImg() {
	thisMovie("myFlashPlayer").prevImg(null);
   }
   
function nextImg() {
	thisMovie("myFlashPlayer").nextImg(null);
}

function showThumb() {
	thisMovie("myFlashPlayer").showThumb(null);
}

function showAlbum() {
	thisMovie("myFlashPlayer").showAlbum(null);
}

function switchFull() {
	thisMovie("myFlashPlayer").switchFull(null);
}
   
 function thisMovie(movieName) {
   return swfobject.getObjectById(movieName);
}

jQuery(window).load(function(){
	hideNav();
	hideControl();
	hideTitle();
jQuery("#control .previous").stop().animate({opacity:'1'},{queue:false, duration:10})  
jQuery("#control .next").stop().animate({opacity:'1'},{queue:false, duration:10})  
jQuery("#control .thumbnail").stop().animate({opacity:'1'},{queue:false, duration:10})  
});



