(function(){
  /*Use Object Detection to detect IE6*/
  var  m = document.uniqueID /*IE*/
  && document.compatMode  /*>=IE6*/
  && !window.XMLHttpRequest /*<=IE6*/
  && document.execCommand ;
  try{
    if(!!m){
      m("BackgroundImageCache", false, true) /* = IE6 only */
    }
  }catch(oh){};
})();

function focusField(caller, def_val) {
	if(caller.value==def_val) {
		caller.value = "";
		caller.style.color = "#000000";
	} else {
		caller.style.color = "#000000";
	}
}

function blurField(caller, def_val) {
	if(caller.value==def_val || caller.value=="") {
		caller.style.color = "";
		caller.value = def_val;
	} else {
		caller.style.color = "#000000";
	}
}

jQuery(function(){
    jQuery('#index_gal')
        .before('<div id="index_gal_nav">')
        .cycle({
            fx:     'turnDown',
            //speed:  'fast',
            timeout: 10000,
            pager:  '#index_gal_nav'//,
            //next: '#index_gal',
            //pause: 1
        });
});
jQuery(document).ready(function(){
	jQuery("a.fancybox[rel='gallery']").fancybox({
                'titleShow' : false
        });
});

