
$(document).ready( function() {

	// Fix IE 6
	var IE6 = (jQuery.browser.msie && parseInt(jQuery.browser.version, 10) == 6);
	if( IE6 ) {
		// cached background images
		document.execCommand("BackgroundImageCache",false,true);

		// PNGs
		$("img[src$='.png']").each(function() {
			var src = '/' + $(this).attr('src');
			$(this).attr("src", "http://www.dynamit.us/img/spacer.gif").attr("style", "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "');");
		});
	}


	// setup the lightbox
	$(".lightbox").lightbox();


	// Forms and Stuff.
	$('input, textarea').focus( function() {
		if( $(this).val() == $(this).attr('title') ) {
			$(this).val('');
		}
	}).blur( function() {
		if( $(this).val() == '' ) {
			$(this).val( $(this).attr('title') );
		}
	});


	$('#sessions').accordion({ 
		header: 'a.tile',
		autoheight: false
	});


});
