
/*******************************************************************************

Theme for PHP-Fusion V7.01
Theme Name: 4Newspapers
Description: Very minimal design, to bring out the content on the page.
    
Version: 1.0
Tags:  bright, one-columns, fixed-width.
Modification: instructions are inside of README file.
        
Author: SimpleVision
email: design@simplevision.dk
site: http://simplevision.dk     

Copyright (c) 2010 SimpleVision.dk
Licences: AGPLv3     
    
******************************************************************************/





$.fn.MakeFusion = function (options) {
    /*----------------------------------------------------------

    Default options 

    -----------------------------------------------------------*/

    var defaults = {
        advSearchLocale: 'Advanced Search',
        thumbsPerRow: 5
    };

    var options = $.extend(defaults, options);


    return this.each(function () {

        if (jQuery.browser.msie) {
            try {
                document.execCommand("BackgroundImageCache", false, true);
            } catch (err) { }
        }
 
        /*----------------------------------------------------------

        SEARCH realted 

        -----------------------------------------------------------*/
        var search = $("#searchform");
        search.before("<a id='searchform_toggle'>" + options.advSearchLocale + "  &#x25BC;</a>");
        $("#searchform_toggle").css("cursor", "pointer").click(function () { search.slideToggle(); });

        /*----------------------------------------------------------

        Whole website layout related fixes

        -----------------------------------------------------------*/
        $("#main").css("min-height", ($(".content").height() - 10));
        $("#side .cssglobal_100 div").css("text-align", "left");
        $("#side #navigation").parent().css("padding", "0");

    });
};
 
