jQuery(document).ready(function($){
	$("a:has(img)").addClass('hasImg');
	$("blockquote").wrapInner('<div class="inner"></div>');
	$('hr').wrap('<div class="hr"></div>')
	//$('#content p:first').addClass('intro')
	$('img[align=left]').addClass('alignleft')
	$('img[align=right]').addClass('alignright')
	
	$('a.popup.hasImg').each(function(i, ahref) {
		var img = $(ahref).find('img')
		var align = $(img).attr('align')
		var style = $(img).attr('style')
		var css = $(img).attr('class')
		
		$(ahref).wrap('<div class="photo-frame '+css+'" style="'+style+'"><div class="inner"></div></div>').append('<span class="expand"></span>')
		$(img).attr({'align':'', 'style':'', 'class':''})
	})
	
	if (typeof tb_init == "function") tb_init("a.popup")
});

jQuery(function($) {
	$('.expandable').each(function(i, obj) {
		$(obj).append('<span class="exp"> [+]</span>').next().hide().addClass('expand-content');
		$(obj).click(function() {
			var next = $(this).next();
			next.toggleClass('expanded')
			if (next.hasClass('expanded')) {
				$(next).slideDown();
				$(this).find('.exp').text(' [-]')
			} else {
				$(next).slideUp();
				$(this).find('.exp').text(' [+]')
			};
			$(this).siblings('.expandable').each(function(i, obj) {
				var next = $(obj).next()
				if (next.hasClass('expanded')) {
					$(obj).find('.exp').text(' [+]')
					next.slideUp().removeClass('expanded')
				}
			})
			
			return false;
		})
	});
	$('.expandable:first').click()
});

/*
 * Social Bar
 */
jQuery(function($) {
	$('#social ul li').hover(function() {
		$(this).addClass('hover')
	}, function() {
		$(this).removeClass('hover')
	})
})

/*
 * Carousel functions
 */
jQuery(function($) {
	$('.carousel .slides > *').each(function(i, obj) {
		$(obj).wrap('<div class="slide"></div>');
	});
	$('.carousel').each(function(i, obj) {
		$(obj).data('pos', 0);
	});
		
	$('.carousel .controls .play').click(function() {
		var carousel = $(this).parent().parent();
		if (carousel.data('timer')) {
			$(this).removeClass('selected');
			clearTimeout(carousel.data('timer'));
			carousel.data('timer', false);
		} else {
			$(this).addClass('selected');
			carouselPlay($(this).parent().parent(), 0);
		}
		return false;
	});
	$('.carousel .controls .forward').click(function() {
		var carousel = $(this).parent().parent();
		if (carousel.data('timer')) {
			$(this).removeClass('selected');
			clearTimeout(carousel.data('timer'));
			carousel.data('timer', false);
		}
		carouselMove(carousel, carousel.data('pos')+1);
		return false;
	});
	$('.carousel .controls .rewind').click(function() {
		var carousel = $(this).parent().parent();
		if (carousel.data('timer')) {
			$(this).removeClass('selected');
			clearTimeout(carousel.data('timer'));
			carousel.data('timer', false);
		}
		carouselMove(carousel, carousel.data('pos')-1);
		return false;
	});
	
});

// animate carousel to i position
function carouselMove(carousel, i) {
	var $ = jQuery;
	if ($(carousel).find('.window .slides .slide').length <= i) i = 0;
	else if (i < 0) i = $(carousel).find('.window .slides .slide').length-1;

	var slideWidth = $(carousel).find('.slide').width();
	var offset = slideWidth * i * -1;

	$(carousel).find('.window .slides .slide').eq(i).addClass('selected').siblings().removeClass('selected');
	$(carousel).find('.window .slides').animate({left:offset}, { 
					easing:'easeOutBounce', 
					duration:1000, 
					complete:function() {
					}
				});
	$(carousel).data('pos', i);
}

function carouselPlay(carousel, i) {
	var $ = jQuery;
	
	if ($(carousel).find('.window .slides .slide').length <= i) i = 0;
	carouselMove(carousel, i+1);
	
	$(carousel).data('timer', setTimeout(function() { carouselPlay(carousel, i+1); }, 5000));
}



// load twitter
jQuery(function($) {
	if ($('.twitter-update').length > 0) {
		loadTweets();
	}
});
function loadTweets() {
	jQuery('.twitter-update .inner3').html('Now loading...');
	jQuery.getScript('http://twitter.com/users/show.json?screen_name=openbox9&callback=displayTwitter');
}
function displayTwitter(data) {
	var html = linkify(data['status']['text']);
	html += '<br><small>'+data['status']['created_at'].replace(/ \+.*/, '')+ ' <a href="http://twitter.com/openbox9">Follow Tweets</a></small>';
	jQuery('.twitter-update .inner3').html(html);
	screen_name = data['screen_name'];
	//jQuery('.twitter-update .inner3 > a').attr('href', 'http://twitter.com/'+screen_name).text('@'+screen_name + ' >')
}


/*
 * linkify - v0.3 - 6/27/2009
 * http://benalman.com/code/test/js-linkify/
 * 
 * Copyright (c) 2009 "Cowboy" Ben Alman
 * Licensed under the MIT license
 * http://benalman.com/about/license/
 * 
 * Some regexps adapted from http://userscripts.org/scripts/review/7122
 */
window.linkify=(function(){var k="[a-z\\d.-]+://",h="(?:(?:[0-9]|[1-9]\\d|1\\d{2}|2[0-4]\\d|25[0-5])\\.){3}(?:[0-9]|[1-9]\\d|1\\d{2}|2[0-4]\\d|25[0-5])",c="(?:(?:[^\\s!@#$%^&*()_=+[\\]{}\\\\|;:'\",.<>/?]+)\\.)+",n="(?:ac|ad|aero|ae|af|ag|ai|al|am|an|ao|aq|arpa|ar|asia|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|biz|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|cat|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|coop|com|co|cr|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|edu|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|info|int|in|io|iq|ir|is|it|je|jm|jobs|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mil|mk|ml|mm|mn|mobi|mo|mp|mq|mr|ms|mt|museum|mu|mv|mw|mx|my|mz|name|na|nc|net|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|org|pa|pe|pf|pg|ph|pk|pl|pm|pn|pro|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tel|tf|tg|th|tj|tk|tl|tm|tn|to|tp|travel|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|xn--0zwm56d|xn--11b5bs3a9aj6g|xn--80akhbyknj4f|xn--9t4b11yi5a|xn--deba0ad|xn--g6w251d|xn--hgbk6aj7f53bba|xn--hlcj6aya9esc7a|xn--jxalpdlp|xn--kgbechtv|xn--zckzah|ye|yt|yu|za|zm|zw)",f="(?:"+c+n+"|"+h+")",o="(?:[;/][^#?<>\\s]*)?",e="(?:\\?[^#<>\\s]*)?(?:#[^<>\\s]*)?",d="\\b"+k+"[^<>\\s]+",a="\\b"+f+o+e+"(?!\\w)",m="mailto:",j="(?:"+m+")?[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@"+f+e+"(?!\\w)",l=new RegExp("(?:"+d+"|"+a+"|"+j+")","ig"),g=new RegExp("^"+k,"i"),b={"'":"`",">":"<",")":"(","]":"[","}":"{","B;":"B+","b?:":"b?9"},i={callback:function(q,p){return p?'<a href="'+p+'" title="'+p+'">'+q+"</a>":q},punct_regexp:/(?:[!?.,:;'"]|(?:&|&amp;)(?:lt|gt|quot|apos|raquo|laquo|rsaquo|lsaquo);)$/};return function(u,z){z=z||{};var w,v,A,p,x="",t=[],s,E,C,y,q,D,B,r;for(v in i){if(z[v]===undefined){z[v]=i[v]}}while(w=l.exec(u)){A=w[0];E=l.lastIndex;C=E-A.length;if(/[\/:]/.test(u.charAt(C-1))){continue}do{y=A;r=A.substr(-1);B=b[r];if(B){q=A.match(new RegExp("\\"+B+"(?!$)","g"));D=A.match(new RegExp("\\"+r,"g"));if((q?q.length:0)<(D?D.length:0)){A=A.substr(0,A.length-1);E--}}if(z.punct_regexp){A=A.replace(z.punct_regexp,function(F){E-=F.length;return""})}}while(A.length&&A!==y);p=A;if(!g.test(p)){p=(p.indexOf("@")!==-1?(!p.indexOf(m)?"":m):!p.indexOf("irc.")?"irc://":!p.indexOf("ftp.")?"ftp://":"http://")+p}if(s!=C){t.push([u.slice(s,C)]);s=E}t.push([A,p])}t.push([u.substr(s)]);for(v=0;v<t.length;v++){x+=z.callback.apply(window,t[v])}return x||u}})();


