$(document).ready(function () {
	$('#lcContainer #lcBody a').click(function(e) {
		switch(this.className) {
			case 'triple':
				window.open(this.href,'popup','width=600,height=510');
				break;
			case 'talk':
				window.open(this.href,'popup','width=600,height=320');
				break;
			case 'satisfaction':
				window.open(this.href,'popup','width=600,height=300');
				break;
			case 'productLink':
				window.open(this.href,'popup');
				break;
		}
		return false;
		});
	$('#totalSatisfaction p.bottomLink a').click(function(e) {
		window.opener.location = 'index.html#first';
		window.close();
		return false;
		});
	$('#totalSatisfaction div.link a, #talkToUs div.link a').click(function(e) {
		window.open(this.href,'new');
		window.close();
		return false;
		});
	$('#talkToUs p.bottomLink a').click(function(e) {
		window.opener.location = 'index.html#third';
		window.close();
		return false;
		});
	$('#foodServicePopup p.bottomLink a').click(function(e) {
		window.opener.location = 'index.html#second';
		window.close();
		return false;
		});
	$('#foodServicePopup div.main p a').click(function(e) {
		window.open(this.href,'new');
		window.close();
		return false;
		});
});

