শুক্রবার, ৩০ ডিসেম্বর, ২০১১

Key dates in the life of North Korea's Kim Jong Il (AP)

Key dates in the history of North Korea and its late leader Kim Jong Il:

? April 15, 1912: North Korean founder Kim Il Sung is born in Pyongyang.

? Feb. 16, 1942: Kim Jong Il is born in a guerrilla fighters' camp on Mount Paektu, the highest peak on the Korean peninsula, according to official North Korean history. Some sources say he was born in a Siberian village, and that the year of his birth was 1941.

? Sept. 9, 1948: Kim Il Sung establishes the Democratic People's Republic of Korea in the northern half of the Korean peninsula.

? June 25, 1950: North Korea invades South Korea.

? July 27, 1953: The Korean War ends in a truce, not a peace treaty.

? September 1973: Kim Jong Il assumes the Workers Party's No. 2 post ? the secretary for the party's organization, guidance and propaganda affairs.

? February 1974: Kim Jong Il is elected to the Political Bureau of the Workers Party's Central Committee and formally becomes North Korea's future leader.

? Oct. 10, 1980: Kim Jong Il's status as the country's future leader is made public at the Workers' Party congress, where he takes up other top positions.

? Jan. 8, 1983: Kim Jong Il's third and youngest son Jong Un is believed to have been born.

? Dec. 24, 1991: Kim Jong Il is named Supreme Commander of the Korean People's Army.

? April 1993: Kim Jong Il is named Chairman of the National Defense Commission.

? July 8, 1994: Kim Il Sung dies of a heart attack and Kim Jong Il inherits power.

? Oct. 8, 1997: Kim Jong Il is named General Secretary of the Workers' Party.

? August 2008: Kim Jong Il reportedly suffers a stroke.

? July 21, 2010: The U.S. imposes new sanctions on North Korea in a bid to stem Pyongyang's nuclear ambitions.

? Sept. 28, 2010: Kim Jong Un is promoted to four-star general and given leadership roles in the ruling Workers' Party ? moves seen as confirmation that he is likely to be the country's next leader. The announcement is North Korean state media's first mention of Kim Jong Un.

? Oct. 10, 2010: Kim Jong Un debuts to public at what is believed to be the largest military parade the communist state has ever staged. The celebration in Pyongyang marks the 65th anniversary of the ruling Workers' Party but also serves as a coming-out party for the younger Kim.

? Oct. 11, 2010: Kim Jong Nam, the casino-loving eldest son of Kim Jong Il, says he opposes a hereditary transfer of power to his youngest half-brother. Analysts say Kim Jong Nam spends so much time outside his native land that his opinion carries little weight. He spoke to Japan's TV Asahi in an interview from Beijing.

? Jan. 28, 2011: Kim Jong Nam says his father opposed continuing the family dynasty into a third generation but named his youngest son as heir to keep the country stable, according to TV Asahi.

? Feb. 16, 2011: Kim Jong Il celebrates his 69th birthday.

? April 15, 2011: North Koreans honor the country's founder, Kim Il Sung, on the 99th anniversary of his birth. It is the nation's most important holiday and known as "The Day of the Sun."

? Dec. 19, 2011: State media announce that Kim Jong Il died Dec. 17.

? Dec. 28, 2011: Tens of thousands wail and stamp their feet in grief as a hearse carries Kim Jong Il's body through Pyongyang streets.

Source: http://us.rd.yahoo.com/dailynews/rss/asia/*http%3A//news.yahoo.com/s/ap/20111228/ap_on_re_as/as_nkorea_kim_jong_il_timeline

lance ball kansas city chiefs tom brady packers green bay packers tim tebow chiefs

Ex-mayor aims to transform bus shelters into canvases for local artists

',
container = $('#drop-panel-container'),
contents = $(container).html();

if (isIE8) {

$(container).replaceWith(f+contents+b)

}



}

function dropPanelSetUp(data) {
/* buttons should be a dataobject of strings representing IDs
the hide and show functions are expecting IDs so passing a class will result in a
failure.

click as the action is assumed for now

the data object should look like this:

{ masterlistener:(string[dom id]),
panel:(string[dom id]),
eventgroup1:{ button:(string[dom id]),
content:(string[dom id]),
offset:{x:(int),y:(int)},
on_state_class: ''(string)
},
eventgroup2:{ button:(string[dom id]),
content:(string[dom id]),
offset:{x:(int),y:(int)},
on_state_class: ''(string)
} ... etc
}

The drop panel nodes should be placed so they share the same offset parent as the buttons that activate it.

NOTE: IE8 Got-chya: the ID for the panel is hard coded into the IE8 rouned corners code.
If you have changed the ID for the drop panel and are having trouble with IE8
change the ID in the template string in this function: ie8DropPanel()

*/



var speed = 300,
panel = $('#'+data.panel),
buttons = [];



for (var i=1,eg; eg=data[('eventgroup'+i)]; i++) {

var bp = $('#'+eg.button).position(), //button position
ph = $('#'+eg.button).height(), //button height
panelPos = [bp.top+ph, bp.left, eg.offset];
on_state_class = eg.on_state_class;

buttons.push([$('#'+eg.button),$('#'+eg.content),panelPos,eg.button,on_state_class]);

}



$('#'+data.masterlistener).bind('click',{speed:speed,panel:panel,buttons:buttons},function(event){

var org = event.target,
speed = event.data.speed,
panel = event.data.panel,
buttons = event.data.buttons,
panel_open = isPanelOpen(panel);




for (var i=buttons.length-1, b; b=buttons[i]; i--) {
/*
* b[0] = button DOM object
* b[1] = content DOM object
* b[2] = the display co-ord object:
* [0] = top (int)
* [1] = left (int)
* [2] = offset object
* {x,y}(int,int)
* b[3] = button ID (string)
* b[4] = button 'on' class
*/

var button_id = b[3],
same_content = isSameContent(panel,b[1]);

if ( $(org).attr('id') === button_id || $(org).parents('#'+button_id).attr('id')){

if(!same_content) {

hideAllContent(buttons);
movePanel(panel,b[2]);

if (panel_open) {

showContent(b[1],b[0],b[4]);

} else {

showContent(b[1],b[0],b[4]);
showPanel(panel,speed);

}

} else {

hidePanel(panel,speed,b[4]);

}

}

}

function isPanelOpen(panel) {


return ($(panel).css('display').toLowerCase() === 'block');
}

function isSameContent (panel,content) {

return ($(content, panel).css('display').toLowerCase() === 'block');

}

function movePanel(panel,b) {
// b[0] top, b[1] left, b[2] {x,y}

$(panel).css({
'top': (b[0] + b[2].x)
});
$(panel).css({
'left': (b[1] + b[2].y)
});

}

function showPanel(panel,speed) {

$(panel).slideDown(speed);
}

function hidePanel(panel,speed) {

$(panel).slideUp(speed, function() {hideAllContent(buttons);});


}

function showContent(content, button, btn_class) {
$(content).show();
$(button).addClass(btn_class);
}

function hideContent(content) {

$(content).hide();

}

function hideAllContent(buttons) {

for (var i = buttons.length-1, b; b=buttons[i]; i--) {
$(b[1]).hide();
$(b[0]).removeClass(b[4]);
}

}


})


}


return {

ieRoundedCorners:ieRoundedCorners,
ie8DropPanel:ie8DropPanel,
dropPanelSetUp:dropPanelSetUp
}



})();



var headerNavication = (function($,cw) {

var nav_item_list = $('.cw-header .main-nav ul.main > li'),
channel_id_list = '',
channel,
sub_channel;

var findChannel = function () {

var winloc = isIE ? document.URL.split('/') : document.documentURI.split('/') ,
channel_id = winloc[3],
sub_chanel_id = winloc.length > 5 ? '/'+winloc[4]+'/' : '',
reg_sub_find_id = new RegExp(sub_chanel_id,'ig'),
reg_removed_id = /^nav-/i;


for (var i=nav_item_list.length-1,n; n=nav_item_list[i]; i--) {

if ( channel_id === $(n).children('a').attr('id').replace(reg_removed_id,'') ) {
var list = $(n).children('ul').children('li');

if (sub_chanel_id.length > 0) {

for (var j=list.length-1,l; l=list[j]; j--) {

if (reg_sub_find_id.test($(l).children('a').attr('href'))) {
break;
} else {
l = false;
}

}

}

break;

}

}

findChannel = function () {
return [n,l];
}

return [n,l];

}

var init = (function() {
channel = findChannel()[0] || nav_item_list[0];
sub_channel = findChannel()[1];

if (sub_channel) {
highlightSubChannel();
}

clearNav();

if(isIE) {

cw.ieRoundedCorners();

if(isIE8) {
cw.ie8DropPanel();
}
}

if ($('#handle-header').attr('id')) {
cw.dropPanelSetUp({
masterlistener: 'handle-header',
panel: ('drop-panel-container'),
eventgroup1: {
button: 'btn-newspapers',
content: 'panel-newspapers',
offset: {
x: 5,
y: 0
},
on_state_class: 'newspapers-dropdown-on'
},
eventgroup2: {
button: 'btn-networks',
content: 'panel-networks',
offset: {
x: 5,
y: 0
},
on_state_class: 'networks-dropdown-on'
}
});
}

//need to check state of search radio buttons since firefox doesn't reset to the default checked radio button
if($('.cw-header #radio-btn-yp:checked').attr('id') != null){
$('.cw-header #header-search-form').attr('action','http://canadacom.yellowpages.ca/search/');
$('.cw-header #header-search-string').attr('name','what');
$('.cw-header #radio-btn-yp').siblings('label').removeClass('selected');
$('.cw-header #radio-btn-yp').next().addClass('selected');
}

eventSetUp();

}())


function highlightSubChannel() {

if((document.location+"").indexOf("/sports/football/cfl/") > -1) $(".mainnav-item .cfl").addClass('sub-nav-highlight');
else if((document.location+"").indexOf("/sports/football/grey-cup-2011/") > -1) $(".mainnav-item .cfl").addClass('sub-nav-highlight');
else if((document.location+"").indexOf("/sports/football/nfl/") > -1) $(".mainnav-item .nfl").addClass('sub-nav-highlight');
else $(sub_channel).addClass('sub-nav-highlight');
}

function clearNav() {

clearTabs();
$(channel).children('ul').show();
$(channel).css('background-position', 'bottom right');

}

function eventSetUp() {


$('.cw-header .main-nav ').bind('mouseleave', function(event){

if (isIE) {

if ($(event.relatedTarget).parents('.main-nav').length 0)?"" + value.substring(0,pos) + "" + value.substring(pos, term.length) + "" + value.substring(pos + term.length) + "":value.substring(0, term.length) + "" + value.substring(pos + term.length) + ""; }, scroll: false, selectFirst: false }); });

Source: http://feeds.canada.com/~r/canwest/F262/~3/OFmCwWcOF-g/story.html

nfl playoff picture nfl playoff picture act new orleans saints sinead o connor atlanta falcons falcons

বুধবার, ২৮ ডিসেম্বর, ২০১১

Sony, Samsung wind up LCD joint venture

Japanese electronics giant Sony has agreed to sell its stake in a joint liquid crystal display panel venture in South Korea to its partner, Samsung Electronics, the two companies said on Monday.

Samsung will acquire all of Sony's stake in S-LCD Corp, making it a wholly owned subsidiary of the Korean company, they said in a statement.

The Asian electronics giants have worked together since the 1990s in the semiconductor and LCD fields.

They established S-LCD in South Korea in 2004 to jointly produce LCD panels mainly used for televisions. Samsung had a stake of 50 per cent plus one share, with Sony holding the remainder.

For its share transfer, which will close by the end of January, Sony will receive 1.08 trillion won ($A930 million), the statement said.

Sony is increasingly relying on other manufacturers for the key TV component as LCD panel prices continue to slide due to a supply glut.

The two companies have also agreed to enter into a new strategic agreement for the supply and purchase of LCD panels.

The new deal will help Sony secure a "flexible and steady supply" of LCD panels, based on market prices and without the cost of operating a manufacturing facility, the statement said.

Samsung expects "heightened flexibility, speed and efficiency in both panel production and business operations", it said.

Source: http://rss.feedsportal.com/c/32563/f/491551/s/1b51492b/l/0L0Scomputerworld0N0Bau0Carticle0C411210A0Csony0Isamsung0Iwind0Iup0Ilcd0Ijoint0Iventure0C0Dutm0Imedium0Frss0Gutm0Isource0Ftaxonomyfeed/story01.htm

grammys 2011 mike leach mike leach billy graham scion fr s elf on a shelf elf on a shelf

thedroidguy: The Samsung Galaxy S III breaks cover with specs? http://t.co/ovlxBpf1 #android

  • Passer la navigation
  • Twitter sur votre mobile ? Cliquez ici m.twitter.com!
  • Passer cette ?tape
  • Connexion
Loader Twitter.com
  • Connexion
The Samsung Galaxy S III breaks cover with specs? goo.gl/LEJGS #android thedroidguy

Droid Guy

Pied de page

Source: http://twitter.com/thedroidguy/statuses/151613304303919104

monday night football bonjovi bonjovi kim jong un antonio brown james harrison james harrison

মঙ্গলবার, ২৭ ডিসেম্বর, ২০১১

22 feared dead in India Christmas boat capsize

Up to 22 Christmas vacationers in India were feared dead after a boat capsized on a lake near the southern city of Chennai Sunday afternoon, government officials said.

The accident happened in Pulicat, a tourist spot about 70 kilometres (43 miles) north of Chennai, when a family of 25 went on a boat ride, Ashish Chatterjee, the top government official in Tiruvallur district of the southern Tamil Nadu state, told Reuters.

Like us on Facebook

"Three survived and eight bodies have been recovered so far," Chatterjee said, adding search was on to find more bodies.

(Reporting by S. Murari)

Source: http://www.ibtimes.com/articles/272584/20111225/22-feared-dead-in-india-christmas-boat-capsize.htm

tim hightower tim hightower waldorf school waldorf school world series game 4 world series game 4 turkey

Oak Harbor mayor-elect donating kidney to Canadian stranger

OAK HARBOR, Wash. -- It's not the kind-of secret one would expect from a candidate. Scott Dudley waited until after he was elected mayor of Oak Harbor to admit he was donating his kidney to a stranger.

"We were not doing this for votes or any political reason," Dudley said.

His reasons were much more personal: his family has a history of polycystic kidney disease. It claimed his grandmother's life when Dudley was an infant. His aunt Myrna also died, despite receiving a kidney from another relative. His uncle also had the disease and lived a longer life thanks to a donated kidney.

"I've seen it firsthand," Dudley said. "I've seen the impact it has had on others' lives."

While attending a Rotary meeting in Canada, he heard from Keesha Rosario, whose 37-year-old husband Philip was battling the same disease and needed of a kidney.

"I took her aside after the meeting and said, 'OK, how do we make this happen?'" Dudley said.

Dudley has made trips to Vancouver for tests to make sure he is a good match. He has yet to meet Philip Rosario, but the two recently exchanged messages online.

"He thinks I'm a hero," Dudley said. "In this case I'm just in the right place at the right time."

If all goes as planned, the transplant will take place in Vancouver next June. Dudley will miss a few weeks at his new job but plans to do as much work as possible on his laptop and phone.

Source: http://www.msnbc.msn.com/id/45794174/ns/local_news-seattle_wa/

barry bonds hazing colton harris moore hurd hurd christopher hitchens ron paul 2012