Nim spins yarns
Nuzhat Aziz
Sunday, April 02, 2006 18:14 IST
She's been ruling Balaji Productions since the 'Hum Paanch' days. Responsible for creating images of the perfect bahus and vicious vamps, she takes the credit for styling characters for all Balaji shows.
Popularly known as 'maasi', Nim Sood is the woman who has given the look for Tulsi, Parvati, Komolika and Mihir, as we know them. Incidentally, Nim is also producer Ektaa Kapoor's aunt.
Recently Nim has conceptualized a show for Balaji. "I have given the concept for 'Kasamh Se'," she admits. The show on Zee deals with the trials and tribulations of three sisters - Bani ( Prachi Desai) , Pia ( Roshni Chopra) and Rano (Arunima Sharma ).
The serial traces their journey from a small town to Mumbai. Nim explains, "I was inspired by a book which I had read some time ago. I shared the idea with Ektaa and she was quite excited by
the concept. I am sure 'Kasamh Se' will be loved by everyone."
With 10 Balaji productions already on air, Nim manages all of them with an assistant. "I have learnt a lot from Balaji. I did not have any idea about editing or TRP ratings. My assistant Jaya manages things well. Apart from styling characters, I am glad that my idea has now taken the form of a show."
Nim has shown her characters to be simple in 'Kasamh Se'. "I haven't given them loud make-up or over-the-top clothes. They are all ordinary girls. And I am confident the audience will relate to them easily," she says.
Nim is also open to scripting for more shows. "Apart from designing I now know where my future lies," she says.
Nim adds, "I would love to share my ideas with Balaji because my loyalty lies here. But in case my ideas are rejected, I wouldn't mind sharing them with other channels in case I am approached by them."
nuzhat@dnaindia.net
// Rating script by Abhijeet Rajole function GetCookie(cookieName) { if(document.cookie) { var index = document.cookie.indexOf(cookieName); if (index != -1) { var countbegin = (document.cookie.indexOf(cookieName+"=", index) + 1); var countend = document.cookie.indexOf(";", index); if (countend == -1) { countend = document.cookie.length; } return document.cookie.substring(countbegin + cookieName.length, countend); } } return null; } function init(){ article_id = 1021604 document.cookie = "DNA=1"; cookies_enabled = GetCookie("DNA") rating_msg_div = document.getElementById("rating_msg") rating_stars_div = document.getElementById("rating_stars") rating_bubble_div = document.getElementById("rating_bubble") average_rating_div = document.getElementById("average_rating") average_rating_img_obj = document.getElementById("average_rating_img") if (document.images){ img_obj1 = new Image(); img_obj2 = new Image(); img_red = "http://www.dnaindia.com/images/rating_star_red.gif"; img_white = "http://www.dnaindia.com/images/rating_star_white.gif"; img_obj1.src = img_red; img_obj2.src = img_white; } star1 = document.getElementById("str1") star2 = document.getElementById("str2") star3 = document.getElementById("str3") star4 = document.getElementById("str4") star5 = document.getElementById("str5") } function setColor(star, myRating){ switch (myRating){ case "1": star1.src=img_red; star2.src=img_white; star3.src=img_white; star4.src=img_white; star5.src=img_white; break; case "2": star1.src=img_red; star2.src=img_red; star3.src=img_white; star4.src=img_white; star5.src=img_white; break; case "3": star1.src=img_red; star2.src=img_red; star3.src=img_red; star4.src=img_white; star5.src=img_white; break; case "4": star1.src=img_red; star2.src=img_red; star3.src=img_red; star4.src=img_red; star5.src=img_white; break; case "5": star1.src=img_red; star2.src=img_red; star3.src=img_red; star4.src=img_red; star5.src=img_red; break; default : star1.src=img_white; star2.src=img_white; star3.src=img_white; star4.src=img_white; star5.src=img_white; } } function resetColor(star, myRating){ star1.src=img_white; star2.src=img_white; star3.src=img_white; star4.src=img_white; star5.src=img_white; } function sendRating(star, myRating){ if (cookies_enabled == 0){ alert("To be able to rate this article, please enable your browser to accept HTTP cookies."); exit; } rating_msg_div.innerHTML=" Wait..."; rating_stars_div.style.display="none"; rating_bubble_div.style.display="none"; if (window.ActiveXObject) { HttpSendRating = new ActiveXObject("Microsoft.XMLHTTP"); } else { HttpSendRating = new XMLHttpRequest; } SendMyRatingUrl = encodeURI("http://www.dnaindia.com/rating.asp?NewsID="+artic le_id+"&rating="+myRating); HttpSendRating.open("get", SendMyRatingUrl, true); HttpSendRating.setRequestHeader('Content-Type','application/ x-www-form-urlencoded'); HttpSendRating.onreadystatechange = HandleHttpSendMyRating; HttpSendRating.send(null); } function HandleHttpSendMyRating() { if (HttpSendRating.readyState == 4) { document.cookie=1021604+"=1;EXPIRES="+getexpirydate(30); latest_rating=HttpSendRating.responseText rating_msg_div.innerHTML="Thank you for rating this article"; if(latest_rating!=null){ average_rating_div.innerHTML=latest_rating; average_rating_img_obj.width=latest_rating*14; } rating_stars_div.style.display="none"; rating_bubble_div.style.display="block"; } rating_stars_div.style.display="none"; rating_bubble_div.style.display="block"; } function getexpirydate(nodays){ var UTCstring; Today = new Date(); nomilli=Date.parse(Today); Today.setTime(nomilli+nodays*24*60*60*1000); UTCstring = Today.toUTCString(); return UTCstring; }