$(document).ready(function() {
  var options = {
    newsList: "#news",
    startDelay: 10,
    placeHolder1: " "
  }
  $().newsTicker(options);
});


$(document).ready(
   function()
   {
   		$('.c').corner();
		$('.c2').corner({
          tl: { radius: 16 },
          tr: { radius: 16 },
          bl: { radius: 16 },
          br: { radius: 16 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"] });
		$('.c3').corner({
          tl: { radius: 16 },
          tr: { radius: 16 },
          bl: { radius: 16 },
          br: { radius: 16 },
          antiAlias: true,
          autoPad: false,
          validTags: ["div"] });
		$('.c4').corner({
          tl: { radius: 16 },
          tr: false,
          bl: false,
          br: { radius: 16 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"] });
		$('.c5').corner({
          tl: { radius: 16 },
          tr: false,
          bl: false,
          br: { radius: 16 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"] });

});




            $(function() {
                $('#rotate ul').tabs({ fxFade: true }).tabsRotate(2000);
            });


<!--
function mover(el) { el.style.backgroundColor='#D7C28A'; }
function mout(el) { el.style.backgroundColor='#262722'; }
//-->



function safe_getElementById(id){ 
var e=false; if (document.getElementById) e=document.getElementById(id); 
else 	if (document.all) 	 
item=document.all[id]; return e; } 

function update_style(e2,e3,action) { 
var bgon='#262722'; var bgoff='#1f201c'; var coloron='#fff'; var coloroff='#fff'; 
if (action=='on') { e2.style.backgroundColor=bgon; e3.style.color=coloron; } 
else { e2.style.backgroundColor=bgoff; e3.style.color=coloroff; } } 


function toggleElement(id,id2,id3) { if (e=safe_getElementById(id)) { 
if (e.style.visibility=='visible') { e.style.visibility = 'hidden'; e.style.display = 'none'; 
if ( (e2=safe_getElementById(id2)) && (e3=safe_getElementById(id3)) ) update_style(e2,e3,'off'); } 
else { e.style.visibility = 'visible'; e.style.display = 'block'; 
if ( (e2=safe_getElementById(id2)) && (e3=safe_getElementById(id3)) ) update_style(e2,e3,'on'); } } } 
