$(function() {

ddsmoothmenu.init({
	mainmenuid: "smoothmenu1", 
	orientation: 'h', 
	classname: 'ddsmoothmenu', 
	contentsource: "markup" 
})

/**
 * Change the preferred language.
 */
$('#select_language').change(function() {
	window.location.replace('/' + $(this).val());
});

$('a[href=#]').click(function() {
	return false;
});

/**
 * If the URL contains a sub URL then open the overlay at that URL.
 *
 * Example URL: http://www.dline.com/products/segments#http://www.xyz.com
 * The second URL will be opened in the overlay.
 */
var hash = window.location.hash;

if (hash.lastIndexOf('http://') != -1) {
	hash = hash.substr(hash.lastIndexOf('#') + 1);

	$('#iframe_newsletter').attr('src', hash);
	$('#iframe_newsletter2').attr('src', hash);
	$('#lightbox_overlay').fadeIn();
}

});

function clearText(field)
{
    if (field.defaultValue == field.value) field.value = '';
    else if (field.value == '') field.value = field.defaultValue;
}


