$(".left-round iframe").contents().find("#widget_main").css("background-color","#fff!important");
Cufon.replace('.top-nav',{ fontFamily: 'REDRING 1969' });
Cufon.replace('.slogan',{ fontFamily: 'REDRING 1969'});
Cufon.replace('#specialstitle',{ fontFamily: 'NewMedia'});
Cufon.replace('.browseby h3',{ fontFamily: 'NewMedia' });
Cufon.replace('.breadcrumbs',{ fontFamily: 'REDRING 1969' });

//round corner

$(function(){ 
  settings = {
          tl: { radius: 4 },
          tr: { radius: 4 },
          bl: { radius: 4 },
          br: { radius: 4 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
$('.search-bar').corner(settings);



});

$(function(){ 
  settings = {
          tl: { radius: 8 },
          tr: { radius: 8 },
          bl: { radius: 8 },
          br: { radius: 8 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
$('.left-round').corner(settings);

});

$(function(){ 
  settings = {
          tl: { radius: 0 },
          tr: { radius: 8 },
          bl: { radius: 0 },
          br: { radius: 0 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
$('#specialstitle').corner(settings);

});

$(function(){ 
  settings = {
          tl: { radius: 0 },
          tr: { radius: 8 },
          bl: { radius: 0 },
          br: { radius: 8 },
          antiAlias: true,
          autoPad: true,
          validTags: ["ul"]
      }
$('.sub-nav').corner(settings);

});


//equal Heights
$(document).ready(function() {
    setHeight('.col');
});

var maxHeight = 0;
function setHeight(column) {
    //Get all the element with class = col
    column = $(column);
    //Loop all the column
    column.each(function() {       
        //Store the highest value
        if($(this).height() > maxHeight) {
            maxHeight = $(this).height();;
        }
    });
    //Set the height
    column.height(maxHeight);
}


