var pausecontent2=new Array()
pausecontent2[0]='<strong>In Management Consulting Services</strong><br>We achieved new success story with Manpower & Government Restructuring Program, crowned with the successful closure for 2011, for establishing National Career Guidance Center.<br> Main tasks included developing the Center’s structure and policies & procedures; conducting manpower planning for required human resources; and providing professional training for the center’s staff who successfully gained international certificates in psychometric assessment and career counseling.'
pausecontent2[1]='<strong>In Cooperation with KPC, Global Consultants Conducts the Second Run of «Interactive & Communication Skills»</strong><br>Leading the path of success in delivering quality training, Global Consultants conducted the Second Run of «Interactive & Communication Skills» course from 24 to 27 November for KPC. The reactions of the participants were very positive as the course is implemented in workshop styles including a large number of case studies and practical exercises stressing the effectiveness of training.'
pausecontent2[2]='<strong>In ISO, BS Quality systems & Certifications Services</strong><br>We have successfully qualified the Public Authority for Industry (PAI) for obtaining the Integrated Management Systems (IMS) certificate covering all its related activities and offices. The systems are designed to cover ISO 9001, ISO 14001, and OHSAS 18001 requirements. '
pausecontent2[3]='<strong>KPC Trainees Praise the "Effective Purchasing Skills – Foundations"</strong><br>In cooperation with the Kuwait Petroleum Corporation, Global Consultants conducted the "Effective Purchasing Skills – Foundations" course from 20 to 24 November where the course was attended by a large number of trainees from KPC and its subsidiaries, which enriched the discussions included in the course and increased the practical benefit from diversified real-life examples from the oil sector for all participants who expressed their desire to attend advanced courses on the same subject.'
pausecontent2[4]='<strong>In Good Manufacturing Practice (GMP)</strong><br>Having professionally rendered our advisory services to qualify the Kuwait Cotton Products Company, to obtain the <strong>G</strong>ood <strong>M</strong>anufacturing <strong>P</strong>ractice (GMP) certificate, the company has become one of the leading companies got that certificate within the state of Kuwait.'
pausecontent2[5]='<strong>The «CMA» Review Course with Great Success</strong><br>This week witnessed the completion of Part I of the CMA Review course conducted by Global Consultants, where Part II of the same course would commence immediately. The CMA Review course attracts a large mass of professionals in Accounting in Kuwait. Global Consultants is expected to start the second run of the course at the beginning of March 2012. Given the great success achieved by the first run of the CMA Review course, <strong>Registration for the second run is still open.</strong>'
pausecontent2[6]='<strong>In British Retail Consortium (BRC/IOP)</strong><br>We have assisted Al-Khatt Packaging Company for obtaining British retail consortium and Institute of Packaging (BRC/IOP) system.With this achievement Al-Khatt Packaging Co., is considered one of the leading in Kuwait to get this certificate, which is originally required by international clients for qualifying their suppliers.'
pausecontent2[7]='<strong>In Mergers & Acquisition Services</strong><br>A new contract has been signed with one of the most reputable food chains company in Kuwait, inviting investors from either funds or private equity for full or partial acquisition to become strategic investor.'


/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}

// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------

pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}


// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------

pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}

// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------

pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}

// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------

pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}

pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}
