/*
 *  This is to add the options for the super size plugin
 */

jQuery.noConflict();
jQuery(document).ready(function($) {



jQuery(function(){
     jQuery.fn.supersized.options = {
         startwidth: 1024,
         startheight: 768,
         minsize: .5,
         slideshow: 1,
         slideinterval: 5000
     };
         jQuery('#supersize').supersized();
});

}); 
