$(document).ready(function(){
	// all external links in a new window
	var h = window.location.host.toLowerCase();
	$("a[href^='http']:not(.external-image):not(.sociable):not([href^='http://" + h + "']):not([href^='http://www." + h + "']):not([href^='https://" + h + "']):not([href^='https://www." + h + "']):not([href^='mailto']), a[href$='.pdf']").attr("target", "_blank").append(' &raquo;');
	$("a[href^='http://www.websightdesigns.com/demos/']:not(.external-image):not(.sociable):not([href^='mailto']), a[href$='.pdf']").attr("target", "_blank").append(' &raquo;');
	// new window on click for external links
	$('a.external')
		.attr({
		target: "_blank"
	}).append(' &raquo;');
	// new window for images
	$('a.external-image')
		.attr({
		target: "_blank"
	});
	// streaming mp3 player
	$(".mp3").jmp3({
		backcolor: "F76204",
		forecolor: "FFFFFF",
		width: 300,
		showdownload: "false",
		showfilename: "false"
	});
	$(".mp3small").jmp3({
		backcolor: "F76204",
		forecolor: "FFFFFF",
		width: 200,
		showdownload: "false",
		showfilename: "false"
	});
	// album covers hover effect
	$(".album-cover img").css({'opacity':'1.0'});
	$('.album-cover a').hover(
		function() {
			$(this).find('img').fadeTo(500, 0.7);
		},
		function() {
			$(this).find('img').fadeTo(500, 1.0);
		}
	);
	// text labels
	$('input#s[title]').each(function() {
		if($(this).val() === '') {
			$(this).val($(this).attr('title'));
		}
		$(this).focus(function() {
			if($(this).val() == $(this).attr('title')) {
				$(this).val('').addClass('focused');
			}
		});
		$(this).blur(function() {
			if($(this).val() === '') {
				$(this).val($(this).attr('title')).removeClass('focused');
			}
		});
	});
	// expanding text area
	$('textarea').elastic();
});
