﻿<!-- break out of frames -->
if (top.location != self.location) {
    top.location.replace(self.location);
}

<!--------------- jQuery Page Load Actions --------------->

$(document).ready(function() {

<!-- Hidden Divs -->
	$('.hide').hide();
 	$('#hider li > a').click(function() {
 		$(this).next().slideToggle('slow');
 		return false;
 	});

<!-- External Website -->
	$('a[href^="http://"]')
	  .attr({
	    target: "_blank",
	    title: "This link directs you to an external website"
	  });

<!-- Lightbox for Screenshots -->
	if($(".fancybox").length) {
		$('.fancybox').fancybox({
			'zoomSpeedIn':	0,
			'zoomSpeedOut':	0,
			'overlayShow':	true
		});
	}
<!-- Table Searcher -->
    if($("#tableSearch").length) {
        $.getScript("/js/jquery.quicksearch.js", function() {
            $('table#discography tbody tr').quicksearch({
                position: 'append',
                attached: '#tableSearch',
                labelText: '',
                inputText: 'Refine search',
                delay: 1000
            });
        });
    }
});