 $.noConflict();
jQuery(document).ready(function($) {

if ( $.browser.msie ) {
  if ($.browser.version <= 7)
  {
	 
 $('.slideshow').css({'height': '350px', 'overflow':'hidden'});
   

  }
  else {
  doSlideshow();
  }
}
else {
doSlideshow();
}


function doSlideshow() {

 $('.slideshow p').cycle({
		fx: 'scrollLeft',
                timeout:  3000,
               speed:           500,
               pause:           true,  
	});


$('.extra_images a').attr('rel', 'lightbox[img]');



}
});

function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }

