function clickdisplay(classe,ide){
i = 1;
jQuery(classe).each(function(){
jQuery(this).attr('title',i);
i++;
});
jQuery(classe).click(function(){
var_title = jQuery(this).attr('title');
jQuery(ide+' li').hide();
jQuery(ide+var_title).fadeIn('slow');
});
}
function propergateformfeild(idname,valuetext){
values = jQuery(idname).attr('value');
if(values != valuetext && values == undefined){
jQuery(idname).attr('value',valuetext);
jQuery(idname).click(function(){
jQuery(idname).attr('value','');});}}



jQuery(document).ready(function() {
clickdisplay("#mycarousel li","#pen");
propergateformfeild('#posted-name','Name:');
propergateformfeild('#searchme','search website:');
propergateformfeild('#posted-email','E-mail Address:');
propergateformfeild('#posted-telephone','Telephone number');
propergateformfeild('#posted-message','Message');
    jQuery('#mycarousel').jcarousel({
        vertical: true,
        scroll: 2
    });
});
