$(document).ready(function() {
$('.corner-image img').each(function(){
	$(this).wrap('<div class="corner-wrap"></div>');
	$(this).parents('.corner-wrap').css('height',$(this).height());
	$(this).parents('.corner-wrap').css('width',$(this).width());
	$(this).parents('.corner-wrap').css('background','url('+$(this).attr('src')+')');
	$(this).attr('src','/images/blank.gif');
		
})
$('.corner-wrap').corner();
/// check if there is any content in sidenav
var sncnt = "";
if($('.downloads').html()){
	sncnt += $('.downloads').html();
}
if($('#tbholder').html()){
	sncnt += $('#tbholder').html();
}
if($('.topimage').attr('href')){
	sncnt += $('.topimage').attr('href');
}
else{
	$('.timage-holder').remove();
}

if(sncnt==""){
	$('.right-menu').remove();
	$('.content').css('width','970px');
}

});
