﻿// JScript File
    var $jq = jQuery.noConflict();
    
    function resetText(id,text)
    {
	    var txt = document.getElementById(id);
	    if(txt.value == "")
	    {
		    txt.value = text
	    }
    };

    function clearText(id,text)
    {
	    var txt = document.getElementById(id);
	    if (txt.value == text)
	    {
	        txt.value = "";
	    }
    };
    
   $jq(document).ready(function(){
   $jq(".pand-indekijker-container").click(function(){
        window.location = $jq(this + " > a").attr("href");
   });
   
    $jq("a.whomanMenu").each(function(){
      //  alert(   $jq(this).attr("href"));
     $jq(this).click(function(){window.location=  $jq(this).attr("href");});
    });
     $jq(function() {
    
        $jq('#header').cycle({
            fx: 'zoom',
            sync: false,
            delay: -10000,
            timeout: 500,
            autostop: true
        });
        $jq('.pand-indekijker-wrapper').cycle({
            fx: 'scrollLeft',
            pause: 5,
            prev: "#indekijker_prev",
            next: "#indekijker_next"

        });


        $jq(".ic_container_aanbod").capslide({
            caption_color: '#868686',
            caption_bgcolor: '#004C92',
            overlay_bgcolor: '#004C92',
            border: '',
            showcaption: true,
            width: 227,
            height: 192
        });

       

    });
   });
  

