// JavaScript Document
$(document).ready(function(){

//$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'dark_square'});

$("a.fancy").fancybox();

$("a.iframe").fancybox({width: 1200, height: 1500 ,overlayOpacity: .7, overlayColor: '#000'});

$("a.youtube").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});


/*clear input boxes on focus*/
$('.clear-me').focus(function() {
    $(this).val("");
  });

			$(function()
			{
				$('#theclampdown-lyrics').jScrollPane({scrollbarWidth:20, scrollbarMargin:10, animateTo:true});

                     $('.read_more').bind(
                    'click',
                    function()
                    {
                        $('#theclampdown-lyrics')[0].scrollBy(parseInt($(this).attr('rel')));
						$('.read_less').show();
                        return false;
                    }
                );
				
				  $('.read_less').bind(
                    'click',
                    function()
                    {
                        $('#theclampdown-lyrics')[0].scrollBy(parseInt($(this).attr('rel')));
                        return false;
                    }
                );
              });


});//end alll




