/*
 * Site Settings For Site
 *
 * Copyright (c) 2008 Dave Merwin (davemerwin.com)
 *
 */
 $(document).ready(function(){
     
     $("img[@src$=png]").pngfix();
     
     var bodyHeight = $('body').height();
     var pageHeight = $('#pageContent').height();
     if (pageHeight < bodyHeight ) {
         $('#pageContent').height(bodyHeight);
     };
         
    $('.fontSwitcher').click(function() {
        var theElement = $('#pageContent').css('font-size'); //Get the font size
        //alert(theElement);
        var textSize = parseFloat(theElement, 10); //Gimme just the number in base 10
        //alert(textSize);
        var unitOfMeasure = theElement.slice(-2); //Find out what the unit of measurement is px, em, or % and use that
        //alert(unitOfMeasure);
        
        if ((this).id == 'largeFonts') {
            textSize += 2;
            //alert(textSize);
        } else {
            textSize -= 2;
            //alert(textSize);
        };
        $('#pageContent').css('font-size', textSize + unitOfMeasure);
        //alert(textSize + unitOfMeasure);
        return false;

    });
        
    //if ($('a').attr({'title': 'Button'})) {
    //    $.addClass('buttonLink');
    //};
	$('a[rel *= facebox]').facebox();
 });
