/*-- // copyright 2010 www.yogajourney.com / written by kp Creation// --*/
//-- bw/sepiaportrait_bw     = new Array(5);portrait_bw[0]  = 'Leslie_sepia.jpg" height="243px" border="0" />';portrait_bw[1]  = 'Leslie_pose_4_sepia.jpg" height=300px" border="0" />';portrait_bw[2]  = 'Leslie_pose_5_sepia.jpg" height="300px" border="0" />';portrait_bw[3]  = 'Leslie_IMG_1450-232x349_sepia.jpg" height="349px" border="0" />';portrait_bw[4]  = 'Leslie_pose_10_sepia.jpg" height="350px" border="0" />';
// color:portrait_co     = new Array(13);portrait_co[0]  = 'Leslie_color.jpg" height="243px" border="0" />';portrait_co[1]  = 'Leslie_IMG_1450-232x349.jpg" height="349px" border="0" />';portrait_co[2]  = 'Leslie_pose_1.jpg" height="300px" border="0" />';portrait_co[3]  = 'Leslie_pose_2.jpg" height="350px" border="0" />';portrait_co[4]  = 'Leslie_pose_3.jpg" height="250px" border="0" />';portrait_co[5]  = 'Leslie_pose_4.jpg" height="300px" border="0" />';portrait_co[6]  = 'Leslie_pose_5.jpg" height="300px" border="0" />';portrait_co[7]  = 'Leslie_pose_6.jpg" height="250px" border="0" />';portrait_co[8]  = 'Leslie_pose_7.jpg" height="300px" border="0" />';portrait_co[9]  = 'Leslie_pose_8.jpg" height="350px" border="0" />';portrait_co[10] = 'Leslie_pose_9.jpg" height="250px" border="0" />';portrait_co[11] = 'Leslie_pose_10.jpg" height="350px" border="0" />';portrait_co[12] = 'Leslie_pose_11.jpg" height="350px" border="0" />';
/*    <div class="img-shadow" style="float: right; margin: 5px">        <img src="images/leslie_pose_2.jpg" height="300px" />    </div> */
function randomportrait( color ) {    if (color == 'bw') {        index = Math.floor(Math.random() * portrait_bw.length);        tmp  = '<div class="img-shadow" style="float: left; margin: 5px">';        tmp += '    <img src="images/portrait/' +  portrait_bw[index];        tmp += '</div>';    }    else {        index = Math.floor(Math.random() * portrait_co.length);        tmp  = '<div class="img-shadow" style="float: right; margin: 5px">';        tmp += '    <img src="images/portrait/' +  portrait_co[index];        tmp += '</div>';    }	document.write(tmp);	//alert(tmp);}
