//javascript for ruhtenberg

$(function() {

	Cufon.replace('h3,h4,p,#footer,#text,label');

	$('#sidebar a').hover(function() {
		$(this).animate({'opacity':'0.6'}, 'fast');
	},function() {
		$(this).animate({'opacity':'1'}, 'fast');
	});

	if( $('body').hasClass('handbags') || $('body').hasClass('bracelets') || $('body').hasClass('cufflinks') ) {
		setTimeout('moveLinkBar();',200);
		if( $('#post-content img').size() > 1 ) {
			var counter = 0;
			var max = $('#post-content img').size();
			$.timer(4000,function() {
				$('#post-content img').eq(counter).fadeOut(1500);
				if( counter+1 < max ) {
					counter++
				} else {
					counter = 0;
				}
				$('#post-content img').eq(counter).fadeIn(1500);
			});
		}
		$('#content p a').append('<span id="zoom">Zoom</span>');
	}
	
	$('.bracelets #content a, .cufflinks #content a, .handbags #content a').lightBox({
		imageLoading: '/wp-content/themes/ruht/images/lightbox-ico-loading.gif', 
		imageBtnPrev: '/wp-content/themes/ruht/images/lightbox-btn-prev.gif', 
		imageBtnNext: '/wp-content/themes/ruht/images/lightbox-btn-next.gif', 
		imageBtnClose: '/wp-content/themes/ruht/images/lightbox-btn-close.gif' 
	});
		
})

function rotateImage() {
	$('#content img').fadeIn();
}

function moveLinkBar() {
    var origHeight = $('#sidebar #link-bar').css('height');
    $('#sidebar #link-bar').css('height','0');
    $('#sidebar #link-bar').show();
    $('#sidebar #link-bar').animate({height:origHeight},750);
}