
function inc(filename)
		{
		var body = document.getElementsByTagName('body').item(0);
		script = document.createElement('script');
		script.src = filename;
		script.type = 'text/javascript';
		body.appendChild(script)
		}
		
		
function incCss(filename)
		{
		var body = document.getElementsByTagName('body').item(0);
		script = document.createElement('link');
		script.href = filename;
		script.type = 'text/css';
		script.rel = 'stylesheet';
		body.appendChild(script)
		}



$(document).ready(function() {


/* MENU DESPLEGABLE */
    if ( !$('#nav').length ){
		
    }else{
		inc("http://scripts.webcontrol.com.ar/wcontrol/menuDesplegable.js");
     }

/* GALERIA*/
    if ( !$('div.galeria').length ){
		
    }else{
		inc("http://scripts.webcontrol.com.ar/jplugs/jquery.galleria.js");
		inc("http://scripts.webcontrol.com.ar/jplugs/jquery.galleria.seteo.js");
		incCss("sistema/css/galleria.css");
     }

/* FOTOBOX */
    if ( !$('div.fotobox').length ){
		
    }else{
		inc("http://scripts.webcontrol.com.ar/jplugs/preetyphoto/js/jquery.prettyPhoto.js");
		inc("http://scripts.webcontrol.com.ar/jplugs/preetyphoto/preetyphoto_seteo.js");
		incCss("http://scripts.webcontrol.com.ar/jplugs/preetyphoto/css/prettyPhoto.css");
		
     }

/*FOTOSLIDE*/

    if ( !$('div.fotoslide').length ){
		
    }else{
		inc("http://scripts.webcontrol.com.ar/jplugs/jquery.easing.1.2.js");
		inc("http://scripts.webcontrol.com.ar/jplugs/jqGalScroll.js");
		inc("http://scripts.webcontrol.com.ar/jplugs/fotoslide.seteo.js");
		
     }


/* CONTACTO*/
    if ( !$('div.contacto').length ){
		
    }else{
		inc("http://scripts.webcontrol.com.ar/wcontrol/validation_form.js");
		inc("http://scripts.webcontrol.com.ar/wcontrol/contacto_seteo.js");
     }


/* MAILFORM */

    if ( !$('div.mailform').length ){
		
    }else{
		inc("http://scripts.webcontrol.com.ar/wcontrol/validation_form.js");
     }


/* FLYER FLOTANTE */

    if ( !$('#flyer div.separador').length ){
		
    }else{
		incCss("template/principal/css/flyer.css");
     }

/* SLIDESHOW*/

    if ( !$('div.slideshow').length ){
		
    }else{
		inc("http://scripts.webcontrol.com.ar/jplugs/jquery_cycle.pack.js");
		inc("http://scripts.webcontrol.com.ar/jplugs/slide_seteo.js");
		
     }

 });